Dart MCP Server

Interact with task, doc, and project data in Dart, an AI-native project management tool

Remote serverstreamable-http

What is the Dart MCP server?

Dart mcp server lets Claude, Cursor and other MCP clients work with Dart directly. Interact with task, doc, and project data in Dart, an AI-native project management tool.

What Dart does

Dart is Project Management powered by AI.

Tools it exposes

Once connected, the assistant can call these 5 tools directly:

  • Prompts — These prompts make it easy for AI assistants to perform common actions in Dart without needing to understand the underlying API details
  • Tools — The Tools tool exposed by this server
  • Cursor — 1. Install Cursor as needed 2. Open the config file by opening Cursor, going into 'Cursor Settings' (not the normal VSCode
  • Cline — 1. Install Cline in your IDE as needed 2. Open the config file by opening your IDE, opening the Cline sidebar, clicking the 'MCP Servers'
  • Windsurf — 1. Install Windsurf as needed 2. Open the config file by opening Windsurf, going into 'Windsurf Settings' (not the normal

Installing the dart mcp server

The server is distributed via npm as dart-mcp-server, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply one environment variable: DART_TOKEN. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Dart sits in that group, and the shape of its toolset — Prompts, Tools, Cursor among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This is a hosted server — you point your client at an endpoint rather than running a local process, so there is nothing to keep updated on your machine.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the dart mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
PromptsThese prompts make it easy for AI assistants to perform common actions in Dart without needing to understand the underlying API details.
ToolsThe Tools tool exposed by this server.
Cursor1. [Install Cursor](https://www.cursor.com/downloads) as needed 2. 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 n
Cline1. [Install Cline](https://cline.bot/) in your IDE as needed 2. 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
Windsurf1. [Install Windsurf](https://windsurf.com/download) as needed 2. Open the config file by opening Windsurf, going into 'Windsurf Settings' (not the normal VSCode IDE settings), opening the 'Cascade' tab, and clicking the

How to install the Dart MCP server

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

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
DART_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Dart to Prompts.
  • Use Dart to Tools.
  • Use Dart to Cursor.

Frequently asked questions

It connects Dart to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (Prompts, Tools, Cursor, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Dart directly.