Skip to content
VS Code

SPOC for VS Code

io.github.spoc-app/mcp-bridge

stdio bridge for the SPOC MCP server — for Claude Desktop, Cursor, Zed

client:VS Code transport:stdio runtime:npm

Install SPOC in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "spoc-bearer",
      "description": "SPOC_BEARER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "spoc-endpoint",
      "description": "SPOC_ENDPOINT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "spoc-events-endpoint",
      "description": "SPOC_EVENTS_ENDPOINT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "spoc-timeout-ms",
      "description": "SPOC_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "spoc-disable-sse",
      "description": "SPOC_DISABLE_SSE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "spoc-debug",
      "description": "SPOC_DEBUG",
      "password": true
    }
  ],
  "servers": {
    "mcp-bridge": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@spocapp/mcp-bridge"
      ],
      "env": {
        "SPOC_BEARER": "${input:spoc-bearer}",
        "SPOC_ENDPOINT": "${input:spoc-endpoint}",
        "SPOC_EVENTS_ENDPOINT": "${input:spoc-events-endpoint}",
        "SPOC_TIMEOUT_MS": "${input:spoc-timeout-ms}",
        "SPOC_DISABLE_SSE": "${input:spoc-disable-sse}",
        "SPOC_DEBUG": "${input:spoc-debug}"
      }
    }
  }
}

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

SPOC in other clients