MCP server for Attio — CRM for contacts, companies, deals, and pipeline.
| Tool | Description |
|---|---|
search_records |
Search and filter CRM records with full-text search, structured attribute filters, and sorting |
list_attribute_definitions |
Discover available attributes, slugs, and types for any object or list — use before constructing filters |
get_pipeline |
Sales pipeline with stage-level summaries, status filtering, and valid stage discovery |
get_record_details |
Record with flattened values (common fields extracted to top level), notes, list entries |
list_tasks |
Tasks grouped by completion status, sorted by deadline, with resolved assignee names and linked record names |
get_recent_activity |
Unified timeline of notes, meetings, and email threads sorted by date |
No install needed — runs directly via npx:
npx -y github:rocketsciencegg/attio-mcp-server#v2.1.1Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"attio": {
"command": "npx",
"args": ["-y", "github:rocketsciencegg/attio-mcp-server#v2.1.1"],
"env": {
"ATTIO_API_KEY": "your-api-key"
}
}
}
}Add to your project's .mcp.json:
{
"mcpServers": {
"attio": {
"command": "npx",
"args": ["-y", "github:rocketsciencegg/attio-mcp-server#v2.1.1"],
"env": {
"ATTIO_API_KEY": "${ATTIO_API_KEY}"
}
}
}
}| Variable | Description |
|---|---|
ATTIO_API_KEY |
Your Attio API key |
git clone https://github.com/rocketsciencegg/attio-mcp-server.git
cd attio-mcp-server
npm install
npm run buildMIT