Skip to content
VS Code

Pickle for VS Code

io.github.adityaarsharma/pickle

Free, local MCP server that audits ClickUp, Slack & Teams for work that slipped through.

client:VS Code transport:stdio runtime:npm

Install Pickle in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "clickup-api-key",
      "description": "CLICKUP_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "slack-token",
      "description": "SLACK_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "teams-token",
      "description": "TEAMS_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "pickle": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "pickle-mcp"
      ],
      "env": {
        "CLICKUP_API_KEY": "${input:clickup-api-key}",
        "SLACK_TOKEN": "${input:slack-token}",
        "TEAMS_TOKEN": "${input:teams-token}"
      }
    }
  }
}

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

Pickle in other clients