Skip to content
VS Code

CollHub for VS Code

com.collhub/collhub

Documents, projects, comments, workflows and data sources of your CollHub instance, as tools.

client:VS Code transport:stdio runtime:npm

Install CollHub in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "collhub-url",
      "description": "COLLHUB_URL",
      "password": true
    }
  ],
  "servers": {
    "collhub": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@collhub/mcp"
      ],
      "env": {
        "COLLHUB_URL": "${input:collhub-url}"
      }
    }
  }
}

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

CollHub in other clients