Skip to content
VS Code

Attio MCP Server for VS Code

io.github.kesslerio/attio-mcp-server

AI-powered Attio CRM access. Manage contacts, companies, deals, tasks, notes and workflows.

client:VS Code transport:stdio runtime:npm

Install Attio MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "attio-api-key",
      "description": "ATTIO_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "attio-workspace-id",
      "description": "ATTIO_WORKSPACE_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "attio-mcp-tool-mode",
      "description": "ATTIO_MCP_TOOL_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-log-level",
      "description": "MCP_LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "attio-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "attio-mcp"
      ],
      "env": {
        "ATTIO_API_KEY": "${input:attio-api-key}",
        "ATTIO_WORKSPACE_ID": "${input:attio-workspace-id}",
        "ATTIO_MCP_TOOL_MODE": "${input:attio-mcp-tool-mode}",
        "MCP_LOG_LEVEL": "${input:mcp-log-level}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Attio MCP Server in other clients