UNPKG

dovetail-mcp-server

Version:

Model Context Protocol (MCP) server for the Dovetail API

47 lines (30 loc) 1.53 kB
# Dovetail MCP Server A Model Context Protocol (MCP) server for connecting AI tools to the Dovetail API. > Note: This is the npm package distribution of the official Dovetail MCP server. The canonical source lives in the [Dovetail MCP GitHub repository](https://github.com/dovetail/dovetail-mcp). ## Disclaimer This package may not always reflect the very latest changes from the upstream repository. As of now, it corresponds to upstream Release 0.3. For the most up-to-date code and releases, please refer to the repository linked above. ## Prerequisites - Node.js 22 or higher (download Node from [nodejs.org](https://nodejs.org/)) - A Dovetail API token (see [Dovetail API Documentation](https://developers.dovetail.com/docs/introduction) for details on obtaining one) ## Get a Dovetail API token 1. In Dovetail, go to Settings → Account → Personal API keys. 2. Generate a new token and copy it. 3. Set it in your environment as `DOVETAIL_API_TOKEN`. For details, see Dovetail’s MCP server docs: [docs.dovetail.com/integrations/mcp-server](https://docs.dovetail.com/integrations/mcp-server). ## Configuration Use this configuration style in MCP-compatible clients (e.g., Claude Desktop, Cursor). It invokes the server via `npx` and passes your API token via environment variable. ``` { "mcpServers": { "dovetail-mcp-server": { "command": "npx", "args": ["-y", "dovetail-mcp-server"], "env": { "DOVETAIL_API_TOKEN": "<YOUR_TOKEN>" } } } } ``` ## License MIT