Skip to content
VS Code

PathCourse Health (PCH) for VS Code

io.github.pathcourse-health/mcp-server

Cheaper LLM inference, USDC agent payments via x402, agent identity / reputation lookup.

client:VS Code transport:stdio runtime:npm

Install PathCourse Health (PCH) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pch-api-key",
      "description": "PCH_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pch-gateway-url",
      "description": "PCH_GATEWAY_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@pathcourse/mcp-server"
      ],
      "env": {
        "PCH_API_KEY": "${input:pch-api-key}",
        "PCH_GATEWAY_URL": "${input:pch-gateway-url}"
      }
    }
  }
}

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

PathCourse Health (PCH) in other clients