# Edworking — MCP server on mcp.ai > Connect your Edworking account and use 12 tools for project management straight from your AI agent. Connect with your own API key. Edworking is a collaborative workspace for managing projects, tasks, files, messages, notifications, and time tracking. By: mcp.ai · official Page: https://mcp.ai/edworking ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_edworking?ms=1787295960000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/edworking/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/edworking/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/edworking/skill.md Postman collection (v2.1): https://mcp.ai/edworking/postman.json ## Tools - edworking_add_time_entry(task_id: string, duration: integer, start_time: string, description?: string) — Record a duration against a task at a specified start time. - edworking_create_task(name: string, project_id: string) — Create a named task in an Edworking project. - edworking_delete_task(task_id: string) — Permanently delete one Edworking task. This operation is destructive and cannot be undone. - edworking_get_task(task_id: string) — Get one task with its project, state, assignees, and time entries. - edworking_list_folders(project_id: string, parent_folder_id?: string) — List folders in an Edworking project, optionally restricted to children of a parent folder. - edworking_list_messages(offset?: integer, project_id: string) — List Edworking's message/activity records for one project from a zero-based offset. Live provider responses may contain only activity records and do not reliably expose text accepted by SEND_MESSAGE. - edworking_list_projects() — List the Edworking projects available to the connected account, returning IDs needed by project-scoped tools. - edworking_list_states(project_id: string) — List the workflow states configured for an Edworking project for inspection. - edworking_list_tasks(project_id?: string) — List tasks, optionally within one Edworking project, with concise status and tracking information. - edworking_remove_time_entry(time_entry_id: string) — Permanently remove one tracked-time entry by ID. This destructive action cannot be undone. - edworking_send_message(body: string, project_id: string) — Irreversibly send a text message to an Edworking project. Edworking provides no verified message deletion operation, and project message listing may not return the sent text; use the returned message - edworking_update_task(name: string, task_id: string, project_id: string) — Update an existing task's name within its Edworking project. ## Example prompts - "What can I do in Edworking?" - "Show me a summary of my Edworking account" ## Links Docs: https://mcp.ai/docs/mcps/edworking Website: https://mcp.ai/mcps/edworking