Dart Project Management MCP server

Integrates with Dart's project management platform, enabling direct task and document management through a set of tools for creating, retrieving, updating, and filtering work items by various attributes.
Back to servers
Setup instructions
Provider
Dart
Release date
Feb 22, 2025
Language
TypeScript
Package
Stats
7.6K downloads
88 stars

The Dart MCP Server allows you to connect AI assistants to Dart, a project management tool powered by AI. It uses the Model Context Protocol (MCP) to enable AI assistants to interact with your Dart workspace, creating and managing tasks and documents.

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

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

Task Management

  • get_config - Get information about the user's space
  • list_tasks - List tasks with optional filtering
  • create_task - Create a new task with various properties
  • 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
  • add_task_comment - Add a comment to an existing task

Document Management

  • list_docs - List docs with optional filtering
  • 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

Installation

The server can be set up using either npx or Docker.

Find the MCP Settings File for Your Client

Claude Desktop

  1. Install Claude Desktop from claude.ai/download if needed
  2. Open the config file: Open Claude Desktop → Settings → Developer tab → Click "Edit Config"
  3. Follow the setup steps in the next section

Claude Code

  1. Install Claude Code if needed
  2. Copy your authentication token from your Dart profile
  3. Run the following command (replace dsa... with your actual Dart token):
claude mcp add-json dart '{"command":"npx","args":["-y","dart-mcp-server"],"env":{"DART_TOKEN":"dsa_..."}}'

Cursor

  1. Install Cursor from cursor.com/downloads if needed
  2. Open the config file: Open Cursor → Cursor Settings → MCP tab → Click "Add new global MCP server"
  3. Follow the setup steps in the next section

Cline

  1. Install Cline from cline.bot if needed
  2. Open the config file: Open your IDE → Cline sidebar → MCP Servers icon → Installed tab → Click "Configure MCP Servers"
  3. Follow the setup steps in the next section

Windsurf

  1. Install Windsurf from windsurf.com/download if needed
  2. Open the config file: Open Windsurf → Windsurf Settings → Cascade tab → Click "View raw config" in the MCP Servers section
  3. Follow the setup steps in the next section

Any Other Client

  1. Find the MCP settings file (usually named [client]_mcp_config.json)
  2. Follow the setup steps in the next section

Set Up the MCP Server

  1. Install npx, which comes with Node.js, if needed
  2. Copy your authentication token from your Dart profile
  3. Add the following to your MCP setup (replace dsa... with your actual Dart token):
{
  "mcpServers": {
    "dart": {
      "command": "npx",
      "args": ["-y", "dart-mcp-server"],
      "env": {
        "DART_TOKEN": "dsa_..."
      }
    }
  }
}

Alternative: Setup with Docker

If the npx setup doesn't work well, you can use Docker:

  1. Install Docker if needed
  2. Build the Docker container:
docker build -t mcp/dart .
  1. Copy your authentication token from your Dart profile
  2. Add the following to your MCP setup (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_..."
      }
    }
  }
}

Support Resources

How to install this MCP server

For Claude Code

To add this MCP server to Claude Code, run this command in your terminal:

claude mcp add-json "dart" '{"command":"npx","args":["-y","dart-mcp-server"],"env":{"DART_TOKEN":"dsa_..."}}'

See the official Claude Code MCP documentation for more details.

For Cursor

There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.

If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.

Adding an MCP server to Cursor globally

To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".

When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:

{
    "mcpServers": {
        "dart": {
            "command": "npx",
            "args": [
                "-y",
                "dart-mcp-server"
            ],
            "env": {
                "DART_TOKEN": "dsa_..."
            }
        }
    }
}

Adding an MCP server to a project

To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.

How to use the MCP server

Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.

The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.

You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

2. Add this to your configuration file:

{
    "mcpServers": {
        "dart": {
            "command": "npx",
            "args": [
                "-y",
                "dart-mcp-server"
            ],
            "env": {
                "DART_TOKEN": "dsa_..."
            }
        }
    }
}

3. Restart Claude Desktop for the changes to take effect

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later