Skip to content
VS Code

mcp pickaxe for VS Code

io.github.aplaceforallmystuff/mcp-pickaxe

MCP server for Pickaxe API - manage AI agents, knowledge bases, users, and analytics

client:VS Code transport:stdio runtime:npm

Install mcp pickaxe in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pickaxe-api-key",
      "description": "PICKAXE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pickaxe-studio-id",
      "description": "PICKAXE_STUDIO_ID",
      "password": true
    }
  ],
  "servers": {
    "mcp-pickaxe": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-pickaxe"
      ],
      "env": {
        "PICKAXE_API_KEY": "${input:pickaxe-api-key}",
        "PICKAXE_STUDIO_ID": "${input:pickaxe-studio-id}"
      }
    }
  }
}

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

mcp pickaxe in other clients