A Model Context Protocol server implementation for Dart task management system
Dart MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. A Model Context Protocol server implementation for Dart task management system.
MCP server that bridges the Dart project management platform to AI assistants. The server is TypeScript but delegates all Dart API calls to a Python subprocess using the dart-sdk package.
Once Dart is connected, these are the calls the assistant has available:
create_task — Create a task with title, description, priority, status, assignees, tagsupdate_task — Update an existing task's status, title, or description by DUIDget_default_status — Return default status DUIDs for a dartboardget_default_space — Return the default space DUIDget_dartboards — List available dartboardsget_folders — List folders in a spacecreate_folder — Create a new foldercreate_doc — Create a document or reportcreate_space — Create a new workspacedelete_space — Delete a workspace by DUIDManual — The Manual tool exposed by this serverThe server ships on npm as @smithery/cli, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
You will need 2 environment variables: DART_TOKEN, PYTHON_PATH. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Plenty of planning and project tracking servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Dart's toolset — create_task, update_task, get_default_status and 8 more — is a fair guide to whether it matches your workflow. It is maintained by jmanhype; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| create_task | Create a task with title, description, priority, status, assignees, tags |
| update_task | Update an existing task's status, title, or description by DUID |
| get_default_status | Return default status DUIDs for a dartboard |
| get_default_space | Return the default space DUID |
| get_dartboards | List available dartboards |
| get_folders | List folders in a space |
| create_folder | Create a new folder |
| create_doc | Create a document or report |
| create_space | Create a new workspace |
| delete_space | Delete a workspace by DUID |
| Manual | The Manual tool exposed by this server. |
{
"mcpServers": {
"dart-mcp-server-jmanhype": {
"command": "npx",
"args": ["-y", "@smithery/cli"],
"env": {
"DART_TOKEN": "your-value",
"PYTHON_PATH": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| DART_TOKEN | Credential the server authenticates with. | Yes |
| PYTHON_PATH | Filesystem location the server is allowed to use. | Optional |
Your workspace, on speaking terms with AI — search, read and write Notion pages and databases.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Search and read your Drive — Docs, Sheets and files become context your assistant can actually use.
Your assistant inside the workspace — read channels, search history, post messages and tame the noise.
Metabase ships its own MCP endpoint — search your BI content, build and run queries, and save questions and dashboards without leaving the chat.
Stop letting your assistant hallucinate n8n node parameters — this server hands it the real schemas, templates and validation.