by its-dart
Enables AI assistants to manage tasks and documents in Dart through a Model Context Protocol server, exposing prompts, resource templates, and tool endpoints for streamlined interaction.
Provides a local Model Context Protocol (MCP) server that exposes task and document management capabilities for Dart, allowing AI assistants to perform common project‑management actions without directly handling the underlying API.
claude_mcp_config.json
, cursor_mcp_config.json
):{
"mcpServers": {
"Dart": {
"command": "npx",
"args": ["-y", "dart-mcp-server@latest"],
"env": { "DART_TOKEN": "<YOUR_DART_TOKEN>" }
}
}
}
create-task
, create-doc
, summarize-tasks
for quick AI‑driven actions.dart-config:
, dart-task:///{taskId}
, dart-doc:///{docId}
.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
.create-task
prompt.summarize-tasks
.create-doc
and get_doc
.docker build -t mcp/dart .
and run it with the provided Docker command in the README.DART_TOKEN
.DART_TOKEN
must be provided so the server can authenticate API requests.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.json
Install 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>" } } } }
Discover more MCP servers with similar functionality and use cases
by jerhadf
A server that integrates Linear's project management system with the Model Context Protocol (MCP) to allow LLMs to interact with Linear.
by taazkareem
clickup-mcp-server is an AI-powered Model Context Protocol (MCP) server that integrates ClickUp project management with AI applications. It enables AI agents to interact with ClickUp tasks and workspace elements through a standardized protocol, facilitating natural language-based workspace management and automation.
by tacticlaunch
MCP Linear is a Model Context Protocol (MCP) server implementation for the Linear GraphQL API that enables AI assistants to interact with Linear project management systems using natural language.
by useshortcut
Provides Model Context Protocol (MCP) tools that let AI assistants query and modify Shortcut data such as stories, epics, iterations, users, and documents.
by phuc-nt
MCP Atlassian Server connects AI agents to Atlassian Jira and Confluence, enabling them to query data and perform actions within these platforms. It simplifies interactions with Atlassian tools, reducing context-switching for users.
by tonyzorin
A Model Context Protocol (MCP) server implementation for JetBrains YouTrack, allowing AI assistants to interact with YouTrack issue tracking system.
by sakce
Enables MCP clients to interact with Monday.com boards, items, updates, and documents.
by kelvin6365
A Model Context Protocol (MCP) server that enables LLMs to interact with Plane.so, allowing them to manage projects and issues through Plane's API.
by HumanSignal
Enables programmatic creation, updating, and interaction with Label Studio projects, tasks, and predictions via an MCP server.