Skip to content
VS Code

Pipedrive CRM for VS Code

io.github.ckalima/pipedrive-mcp-server

MCP server for Pipedrive CRM. 155 tools for deals, persons, organizations, activities, and more.

client:VS Code transport:stdio runtime:npm

Install Pipedrive CRM in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pipedrive-api-key",
      "description": "PIPEDRIVE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pipedrive-mode",
      "description": "PIPEDRIVE_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pipedrive-enable-destructive",
      "description": "PIPEDRIVE_ENABLE_DESTRUCTIVE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pipedrive-image-base-dir",
      "description": "PIPEDRIVE_IMAGE_BASE_DIR",
      "password": true
    }
  ],
  "servers": {
    "pipedrive-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@ckalima/pipedrive-mcp-server"
      ],
      "env": {
        "PIPEDRIVE_API_KEY": "${input:pipedrive-api-key}",
        "PIPEDRIVE_MODE": "${input:pipedrive-mode}",
        "PIPEDRIVE_ENABLE_DESTRUCTIVE": "${input:pipedrive-enable-destructive}",
        "PIPEDRIVE_IMAGE_BASE_DIR": "${input:pipedrive-image-base-dir}"
      }
    }
  }
}

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

Pipedrive CRM in other clients