Best for
- Teams using Dart for project management
- Users who want AI assistants to directly manipulate tasks and documents
- Users of MCP-compatible clients
This server is the official MCP implementation for Dart, but it is deprecated. It offers full functionality for task and document management, but users are advised to migrate to the hosted version for ongoing support and improvements.
The Dart MCP Server is the official AI Model Context Protocol (MCP) server for Dart. It enables AI assistants to manage tasks and documents via the MCP protocol, including creating, updating, deleting, and listing tasks and documents. Note: The local server is deprecated in favor of the hosted Dart MCP server.
Installation steps: 1. Ensure Node.js (with npx) is installed. 2. Copy your authentication token from your Dart profile. 3. Add the JSON configuration to your MCP settings file, replacing DART_TOKEN with your actual token. Alternatively, use Docker: build the image and run the container.
{
"mcpServers": {
"Dart": {
"command": "npx",
"args": [
"-y",
"dart-mcp-server@latest"
],
"env": {
"DART_TOKEN": "dsa_..."
}
}
}
}