attio-mcp-server
Overview
attio-mcp-server is a server designed for Attio, an AI-native CRM, enabling MCP clients like Claude to connect to the Attio API.
To use attio-mcp-server, you need to set up your environment with an ATTIO_API_KEY, which can be obtained through the Attio API Explorer or by configuring OAuth.
- Reading company records - Reading company notes - Writing company notes - Future capabilities for additional activities
- Integrating AI clients with Attio for enhanced CRM functionalities.
- Automating note-taking and record management in Attio.
- Developing custom applications that leverage Attio's API for data management.
Add to your AI client
Use these steps to connect attio-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"attio-mcp-server-hmk": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-attio-mcp-server-hmk"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"attio-mcp-server-hmk": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-attio-mcp-server-hmk"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"attio-mcp-server-hmk": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-attio-mcp-server-hmk"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"attio-mcp-server-hmk": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-attio-mcp-server-hmk"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"attio-mcp-server-hmk": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-attio-mcp-server-hmk"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"attio-mcp-server-hmk": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-attio-mcp-server-hmk"
]
}
}
}FAQ
What is required to run attio-mcp-server?
You need Node.js, npm, git, and dotenv installed, along with an Attio API key.
Can I contribute to attio-mcp-server?
Yes! You can fork the repository, clone it, and set up your development environment to contribute.
What are the current capabilities of attio-mcp-server?
Currently, it supports reading and writing company records and notes.