Skip to main content

Claude integration

Use Dart's MCP server to integrate with Claude Desktop or Claude Code

Updated yesterday

Dart's Claude integration allows you to create, edit, and view tasks and documents directly through Claude's desktop app without even having to open up Dart. (Note that you must use the desktop app as this doesn't work through the browser.)

Capabilities

The Dart MCP server comes with a variety of preconfigured prompts and tools for task and doc management.

To get started, ask your chat something like "What can the Dart MCP do" and go from there. Some great prompts include

  1. "Record an action item to review the new designs"

  2. "Show my tasks in a table"

  3. "Help me make a doc for a job description"

  4. "Mark today's highest priority task as doing"

Setup

Claude Code

  1. Run claude mcp add --transport http Dart https://mcp.dartai.com/mcp

  2. Run claude and then run /mcp within Claude Code

  3. Click 'Allow' on the next screen

Claude Desktop

  1. Go to Settings > Connectors and click 'Add custom connector'

  2. Put in Dart as the Name and https://mcp.dartai.com/mcp as the URL

  3. Click 'Add', then click 'Allow' on the next screen

If you don't see these settings

  1. Directly open the MCP config file under Settings > Developer

  2. Click 'Edit Config', then add

  3. {
    "mcpServers": {
    "Dart": {
    "command": "npx",
    "args": ["-y", "mcp-remote", "https://mcp.dartai.com/mcp"]
    }
    }
    }
  4. Click 'Allow' on the next screen

Did this answer your question?