attio-mcp-server MCP工具 是 AI Skill Hub 本期精选MCP工具之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
Attio Model Context Protocol (MCP) 服务端实现,提供高效的MCP服务
attio-mcp-server MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Attio Model Context Protocol (MCP) 服务端实现,提供高效的MCP服务
attio-mcp-server MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/kesslerio/attio-mcp-server
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"attio-mcp-server-mcp--": {
"command": "npx",
"args": ["-y", "attio-mcp-server"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 attio-mcp-server MCP工具 执行以下任务... Claude: [自动调用 attio-mcp-server MCP工具 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"attio-mcp-server_mcp__": {
"command": "npx",
"args": ["-y", "attio-mcp-server"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
A comprehensive Model Context Protocol (MCP) server for Attio, providing complete CRM surface coverage. This server enables AI assistants like Claude and ChatGPT to interact directly with your entire Attio workspace through natural language—manage Deals, Tasks, Lists, People, Companies, Records, and Notes without falling back to raw API calls.
Prompts include built-in token optimization:
MCP_DEV_META=true for token counts in responsesPROMPT_TELEMETRY_ENABLED=true for usage loggingMAX_PROMPT_TOKENS environment variableFor complete prompt documentation, see docs/prompts/v1-catalog.md.
get_record_attribute_options tool (#975) - Get valid options for select/status fields with enhanced error messages--option-fetch-delay flagThis initial release provides a solid foundation for CRM automation.
```
See Skills Documentation for complete setup and usage guides.
⚠️ IMPORTANT: Correct Package Name The npm package name isattio-mcp(notattio-mcp-server). The GitHub repository is namedattio-mcp-server, but the npm package was renamed toattio-mcpin June 2025. Installingattio-mcp-serverwill give you an outdated v0.0.2 release with only 4 legacy tools.
Best for: Developers who prefer local installations with automatic configuration.
One-command scripts that install attio-mcp and configure your client automatically.
curl -fsSL https://raw.githubusercontent.com/kesslerio/attio-mcp-server/main/scripts/install-claude-desktop.sh | bash
curl -fsSL https://raw.githubusercontent.com/kesslerio/attio-mcp-server/main/scripts/install-cursor.sh | bash
curl -fsSL https://raw.githubusercontent.com/kesslerio/attio-mcp-server/main/scripts/install-claude-code.sh | bash
These scripts will:
attio-mcp npm package globally (if needed)---
npm install -g attio-mcp
npm install attio-mcp ```
</details>
---
Best for: Teams needing centralized OAuth, multi-user access, mobile access, or running MCP without local installation.
Deploy your own Attio MCP server on Cloudflare Workers with full OAuth 2.1 support.
Mobile Access: With a remote MCP server, you can use Attio tools from:
| Feature | Cloudflare Worker |
|---|---|
| Setup complexity | Medium |
| OAuth built-in | ✅ |
| Mobile app access | ✅ |
| Multi-user access | ✅ |
| Custom domain | ✅ |
| Self-hosted | ✅ |
| Team deployments | ✅ Full |
| Cost | Free tier |
```bash cd examples/cloudflare-mcp-server npm install wrangler kv:namespace create "TOKEN_STORE"
```bash
git clone https://github.com/kesslerio/attio-mcp-server.git
cd attio-mcp-server
npm install
npm run build
npm run test:offline
```bash
Upgrading from v1.3.x or earlier? Tool names have changed to follow MCP naming conventions.
Old names still work via backward-compatible aliases, but will be removed in v2.0.0 (Q1 2026).
export ATTIO_DEFAULT_DEAL_OWNER="john.smith@company.com"
**Note**: The system will automatically resolve email addresses to workspace member references when creating deals.
**Deal Stages**:
Deal stages are specific to your workspace. Check your Attio workspace settings or use the `discover-attributes` command to find available stages for deals.
json { "mcpServers": { "attio-mcp": { "command": "attio-mcp", "env": { "ATTIO_API_KEY": "your_api_key_here", "ATTIO_WORKSPACE_ID": "your_workspace_id_here", "ATTIO_DEFAULT_DEAL_STAGE": "Interested", "ATTIO_DEFAULT_DEAL_OWNER": "user@company.com", "ATTIO_DEFAULT_CURRENCY": "USD" } } } } ```
Best for: Power users who prefer full control or use unsupported clients.
<details> <summary><strong>Claude Desktop Manual Setup</strong></summary>
npm install -g attio-mcp
~/Library/Application Support/Claude/claude_desktop_config.json~/.config/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"attio-mcp": {
"command": "attio-mcp",
"env": {
"ATTIO_API_KEY": "your_api_key_here"
}
}
}
}
</details>
<details> <summary><strong>Cursor IDE Manual Setup</strong></summary>
npm install -g attio-mcp
Location: ~/.cursor/mcp.json
{
"mcpServers": {
"attio-mcp": {
"command": "attio-mcp",
"env": {
"ATTIO_API_KEY": "your_api_key_here"
}
}
}
}
</details>
<details> <summary><strong>Claude Code (CLI) Manual Setup</strong></summary>
echo '{"command":"attio-mcp","env":{"ATTIO_API_KEY":"your_key_here"}}' | claude mcp add-json attio-mcp --stdin -s user
Edit ~/.claude/settings.json:
{
"mcpServers": {
"attio-mcp": {
"command": "attio-mcp",
"env": {
"ATTIO_API_KEY": "your_api_key_here"
}
}
}
}
</details>
<details> <summary><strong>Building from Source</strong></summary>
For development or custom deployments:
git clone https://github.com/kesslerio/attio-mcp-server.git
cd attio-mcp-server
npm install
npm run build
Run directly:
ATTIO_API_KEY=your_key node dist/index.js
</details>
<details> <summary><strong>NPM Global Install</strong></summary>
```bash
The server supports two authentication methods—both use the same Bearer token scheme:
| Method | Environment Variable | Best For |
|---|---|---|
| **API Key** (recommended) | ATTIO_API_KEY | Long-term integrations, personal use |
| **OAuth Access Token** | ATTIO_ACCESS_TOKEN | OAuth integrations, third-party apps |
Note: If both are set, ATTIO_API_KEY takes precedence. OAuth Users: For detailed setup including PKCE flow and token refresh, see OAuth Authentication Guide.
```bash
export ATTIO_API_KEY="your_api_key_here"
export ATTIO_DEFAULT_DEAL_STAGE="Interested" # Default stage for new deals export ATTIO_DEFAULT_DEAL_OWNER="user@company.com" # Default owner email address (see below) export ATTIO_DEFAULT_CURRENCY="USD" # Default currency for deal values ```
The MCP server uses field mapping files to translate between natural language and Attio's API field names. This configuration is essential for proper operation.
```bash
cp configs/runtime/mappings/sample.json configs/runtime/mappings/user.json
Add to your Claude Desktop MCP configuration:
Deal Owner Email (for deal owner defaults): The ATTIO_DEFAULT_DEAL_OWNER should be set to the email address of the workspace member who should own new deals by default. This is typically your own email address or the email address of your sales team lead.
```bash
DISABLE_UNIVERSAL_TOOLS=true environment variable (deprecated)📋 Implementation Status: These docs describe the Attio API endpoints. For MCP tool usage, refer to universal tools documentation above.
For local development and testing with Smithery Playground:
npm run dev # Opens Smithery Playground with local server
See docs/deployment/smithery-cli-setup.md for detailed Smithery CLI development setup.
⚠️ Smithery Temporarily Unavailable: Smithery has changed their deployment model to require external hosting. We're working on Cloudflare Worker hosting for ChatGPT users. In the meantime, use Tier 4 (Cloudflare Worker) for ChatGPT/remote access.
ChatGPT Pro/Plus users can access the Attio toolset through natural language using a self-hosted Cloudflare Worker:
filter-list-entries - Unified filtering with 4 modesmanage-list-entry - Unified entry management with 3 modesget-list-entries - Retrieve list entriesget-record-list-memberships - Find record's list membershipscreate_deal and update_deal```
For maximum supply chain protection, install with pnpm v10+ which enforces:
trustPolicy: no-downgrade — blocks versions published with weaker credentials than prior versionsminimumReleaseAge — cooldown period before new versions can be installed该项目提供了MCP服务端的开源实现,使用TypeScript编写,易于维护和扩展。值得关注。
该工具使用 NOASSERTION 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
📄 NOASSERTION — 请查阅原始协议条款了解具体使用限制。
经综合评估,attio-mcp-server MCP工具 在MCP工具赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | attio-mcp-server |
| 原始描述 | 开源MCP工具:Attio Model Context Protocol (MCP) server implementation。⭐67 · TypeScript |
| Topics | MCPTypeScript |
| GitHub | https://github.com/kesslerio/attio-mcp-server |
| License | NOASSERTION |
| 语言 | TypeScript |
收录时间:2026-05-16 · 更新时间:2026-05-19 · License:NOASSERTION · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端