by its-dart
Provides AI-powered project management capabilities via a Model Context Protocol server, allowing assistants to create, list, update, and delete tasks and documents in Dart without directly handling the underlying API.
Dart MCP Server enables AI assistants to interact with Dart’s project‑management platform through standardized prompts, resource templates, and tools. It implements the Model Context Protocol, exposing operations for task and document management.
npx -y dart-mcp-server@latest command with the token supplied in DART_TOKEN.{
"mcpServers": {
"Dart": {
"command": "npx",
"args": ["-y", "dart-mcp-server@latest"],
"env": { "DART_TOKEN": "<YOUR_DART_TOKEN>" }
}
}
}
create-task, create-doc, summarize-tasks.dart-config:, dart-task:///, dart-doc:///.get_config, list_tasks, create_task, get_task, update_task, delete_task, add_task_comment.list_docs, create_doc, get_doc, update_doc, delete_doc.Q: Which token is required?
A: The DART_TOKEN from your Dart account settings.
Q: Can I run the server without Node? A: Yes, a Docker image is provided; use the Docker command snippet in the README.
Q: Is this server still recommended? A: It is deprecated in favor of the hosted Dart MCP server, but it can still be used for local development.
Dart is Project Management powered by AI.
[!WARNING] The Dart local MCP server is deprecated in favor of the simplified and improved hosted Dart MCP server, which you can configure with these instructions.
The following prompts are available
create-task - Create a new task in Dart with title, description, status, priority, and assigneecreate-doc - Create a new document in Dart with title, text content, and foldersummarize-tasks - Get a summary of tasks with optional filtering by status and assigneeThese prompts make it easy for AI assistants to perform common actions in Dart without needing to understand the underlying API details.
The following resources are available
dart-config: - Configuration information about the user's spacedart-task:///{taskId} - Detailed information about specific tasksdart-doc:///{docId} - Detailed information about specific docsThe following tools are available
get_config - Get information about the user's space, including available assignees, dartboards, folders, statuses, tags, priorities, and sizeslist_tasks - List tasks with optional filtering by assignee, status, dartboard, priority, due date, and morecreate_task - Create a new task with title, description, status, priority, size, dates, dartboard, assignees, tags, and parent taskget_task - Retrieve an existing task by its IDupdate_task - Update an existing task's propertiesdelete_task - Move a task to the trash (recoverable)add_task_comment - Add a comment to an existing tasklist_docs - List docs with optional filtering by folder, title, text content, and morecreate_doc - Create a new doc with title, text content, and folderget_doc - Retrieve an existing doc by its IDupdate_doc - Update an existing doc's propertiesdelete_doc - Move a doc to the trash (recoverable)Each tool supports comprehensive input validation and returns structured JSON responses.
The easiest way to run the MCP server is with npx, but a Docker setup is also available.
Install Claude Code as needed
Copy your authentication token from your Dart profile
Run the following command, being sure to replace dsa... with your actual Dart token
claude mcp add dart -e DART_TOKEN=dsa_... -- npx -y dart-mcp-server@latest
[client]_mcp_config.jsonInstall npx, which comes bundled with Node, as needed
Copy your authentication token from your Dart profile
Add the following to your MCP setup, being sure to replace dsa... with your actual Dart token
{
"mcpServers": {
"Dart": {
"command": "npx",
"args": ["-y", "dart-mcp-server@latest"],
"env": {
"DART_TOKEN": "dsa_..."
}
}
}
}
If the npx setup above does not work well, we also provide a Docker setup. Follow the instructions above to find the MCP settings file
Install Docker as needed
Build the Docker container with docker build -t mcp/dart .
Copy your authentication token from your Dart profile
Add the following to your MCP setup, being sure to replace dsa... with your actual Dart token
{
"mcpServers": {
"Dart": {
"command": "bash",
"args": [
"-c",
"docker rm -f dart-mcp >/dev/null 2>&1 || true; docker run -i --rm --name dart-mcp -e DART_TOKEN mcp/dart"
],
"env": {
"DART_TOKEN": "dsa_..."
}
}
}
}
Contributions are welcome! Please open an issue or submit a pull request.
This project is licensed under the MIT License.
Please log in to share your review and rating for this MCP.
{
"mcpServers": {
"Dart": {
"command": "npx",
"args": [
"-y",
"dart-mcp-server@latest"
],
"env": {
"DART_TOKEN": "<YOUR_DART_TOKEN>"
}
}
}
}claude mcp add Dart npx -y dart-mcp-server@latestExplore related MCPs that share similar capabilities and solve comparable challenges
by zed-industries
A high‑performance, multiplayer code editor designed for speed and collaboration.
by modelcontextprotocol
Model Context Protocol Servers
by modelcontextprotocol
A Model Context Protocol server for Git repository interaction and automation.
by modelcontextprotocol
A Model Context Protocol server that provides time and timezone conversion capabilities.
by cline
An autonomous coding assistant that can create and edit files, execute terminal commands, and interact with a browser directly from your IDE, operating step‑by‑step with explicit user permission.
by continuedev
Enables faster shipping of code by integrating continuous AI agents across IDEs, terminals, and CI pipelines, offering chat, edit, autocomplete, and customizable agent workflows.
by upstash
Provides up-to-date, version‑specific library documentation and code examples directly inside LLM prompts, eliminating outdated information and hallucinated APIs.
by github
Connects AI tools directly to GitHub, enabling natural‑language interactions for repository browsing, issue and pull‑request management, CI/CD monitoring, code‑security analysis, and team collaboration.
by daytonaio
Provides a secure, elastic infrastructure that creates isolated sandboxes for running AI‑generated code with sub‑90 ms startup, unlimited persistence, and OCI/Docker compatibility.