by hmk
Integrate with Attio's API to manage company records and notes seamlessly, streamlining CRM operations for efficient wor
Connects to Attio CRM to read company data and manage notes through API integration. Enables CRM operations without using Attio's web interface directly.
Attio is a community-built MCP server published by hmk that provides AI assistants with tools and capabilities via the Model Context Protocol. Integrate with Attio's API to manage company records and notes seamlessly, streamlining CRM operations for efficient wor It is categorized under productivity, databases.
You can install Attio in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
BSD-3-Clause
Attio is released under the BSD-3-Clause license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Enable Claude to query your database directly using natural language
Example
Ask 'Show me top 10 customers by revenue this month' and get SQL results instantly
Eliminate manual SQL writing for ad-hoc queries, get insights 10x faster
Generate complex reports and analytics without leaving conversation
Example
Analyze sales trends, cohort retention, user behavior patterns conversationally
Democratize data access—non-technical team members can query databases
Understand database structure, relationships, and data models
Example
'Explain the user_orders table schema and its relationships'
Onboard engineers faster, explore unfamiliar databases efficiently
Share your MCP server with the developer community
Attio has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
We evaluated Attio against two servers with overlapping tools; this profile had the clearer scope statement.
Attio reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Attio has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
We evaluated Attio against two servers with overlapping tools; this profile had the clearer scope statement.
We evaluated Attio against two servers with overlapping tools; this profile had the clearer scope statement.
Attio has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Useful MCP listing: Attio is the kind of server we cite when onboarding engineers to host + tool permissions.
Attio is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Strong directory entry: Attio surfaces stars and publisher context so we could sanity-check maintenance before adopting.
showing 1-10 of 49
This is an MCP server for Attio, the AI-native CRM. It allows mcp clients (like Claude) to connect to the Attio API.
You will need:
ATTIO_API_KEYThis is expected to be a bearer token which means you can get one through the API Explorer on the right hand side or configure OAuth and retrieve one throught the Attio API.
{
"mcpServers": {
"attio": {
"command": "npx",
"args": ["attio-mcp-server"],
"env": {
"ATTIO_API_KEY": "YOUR_ATTIO_API_KEY"
}
}
}
}
Before you begin, ensure you have the following installed:
To set up the development environment, follow these steps:
Fork the repository
Clone Your Fork:
git clone https://github.com/YOUR_USERNAME/attio-mcp-server.git
cd attio-mcp-server
Add Upstream Remote
git remote add upstream https://github.com/hmk/attio-mcp-server.git
Copy the dotenv file
cp .env.template .env
Install dependencies:
npm install
Run watch to keep index.js updated:
npm run build:watch
Start the model context protocol development server:
dotenv npx @modelcontextprotocol/inspector node PATH_TO_YOUR_CLONED_REPO/dist/index.js
If the development server did not load the environment variable correctly, set the ATTIO_API_KEY on the left-hand side of the mcp inspector.
Run data quality queries to catch anomalies and inconsistencies
Example
Find duplicate records, missing values, orphaned foreign keys automatically
Maintain data integrity with less manual SQL work
Prerequisites
Time Estimate
15-30 minutes including configuration and testing
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
MCP server acts as bridge between Claude and database, translating natural language to SQL queries and returning results in structured format.
Protocols
Compatibility
✓ Use when
Use for ad-hoc data queries, exploratory analysis, report generation, schema exploration, and democratizing data access. Best for read-heavy analytics workloads.
✗ Avoid when
Avoid for production write operations, mission-critical transactions, real-time OLTP workloads, or when database contains sensitive PII without proper access controls. Use read replicas, not primary.