A Model Context Protocol (MCP) server for connecting AI tools to the Dovetail API.
- Node.js 22 or higher
- A Dovetail API token (see Dovetail API Documentation for details on obtaining one)
- Download the latest
index.js
here - Head over to configuration to continue
-
Clone the repository:
git clone https://github.com/dovetail/dovetail-mcp.git cd dovetail-mcp
-
Install dependencies:
yarn install
-
Build the project:
yarn build
-
Locate and copy the
dist/index.js
filepath (this will copy the path to your clipboard for the configuration step):realpath dist/index.js | pbcopy
We recommend setting this up in an MCP client like Claude or Cursor by entering the following:
Claude: Navigate to Settings → Developer → Edit Config and add the following to your
claude_desktop_config.json
Cursor: Navigate to Settings → Tools & Integrations → Add Custom MCP
{
"mcpServers": {
"dovetail-mcp": {
"command": "node",
"args": ["<path-to-your-index-js-file>"],
"env": {
"DOVETAIL_API_TOKEN": "<YOUR_TOKEN>"
}
}
}
}
MIT