development
documentation
public
AI
project management
What is Dart MCP Server is Project Management powered by AI.?
The Dart local MCP server is deprecated in favor of the simplified and improved hosted Dart MCP server. The Dart MCP server is the official AI Model Context Protocol (MCP) server for Dart, providing features like task management, document management, and various tools for efficient project management.
[!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.
Features# Prompts
The following prompts are available
create-task - Create a new task in Dart with title, description, status, priority, and assignee
create-doc - Create a new document in Dart with title, text content, and folder
summarize-tasks - Get a summary of tasks with optional filtering by status and assignee
These prompts make it easy for AI assistants to perform common actions in Dart without needing to understand the underlying API details.
Resource templates
The following resources are available
dart-config: - Configuration information about the user's space
dart-task:///{taskId} - Detailed information about specific tasks
dart-doc:///{docId} - Detailed information about specific docs
Tools
The following tools are available
Task management
get_config - Get information about the user's space, including available assignees, dartboards, folders, statuses, tags, priorities, and sizes
list_tasks - List tasks with optional filtering by assignee, status, dartboard, priority, due date, and more
create_task - Create a new task with title, description, status, priority, size, dates, dartboard, assignees, tags, and parent task
get_task - Retrieve an existing task by its ID
update_task - Update an existing task's properties
delete_task - Move a task to the trash (recoverable)
add_task_comment - Add a comment to an existing task
Document management
list_docs - List docs with optional filtering by folder, title, text content, and more
create_doc - Create a new doc with title, text content, and folder
get_doc - Retrieve an existing doc by its ID
update_doc - Update an existing doc's properties
delete_doc - Move a doc to the trash (recoverable)
Each tool supports comprehensive input validation and returns structured JSON responses.
Setup
The easiest way to run the MCP server is with npx, but a Docker setup is also available.
Find the MCP settings file for the client## Claude Desktop
Open the config file by opening Cursor, going into 'Cursor Settings' (not the normal VSCode IDE settings), opening the 'MCP' tab, and clicking the 'Add new global MCP server' button
Open the config file by opening your IDE, opening the Cline sidebar, clicking the 'MCP Servers' icon button that is second from left at the top, opening the 'Installed' tab, and clicking the 'Configure MCP Servers' button
Open the config file by opening Windsurf, going into 'Windsurf Settings' (not the normal VSCode IDE settings), opening the 'Cascade' tab, and clicking the 'View raw config' button in the 'Model Context Protocol (MCP) Servers' section
Follow the 'Set up the MCP server' steps below
Any other client
Find the MCP settings file, usually something like [client]_mcp_config.json
Follow the 'Set up the MCP server' steps below
Set up the MCP server
Install npx, which comes bundled with Node, as needed