Skip to content
VS Code

pacer mcp for VS Code

io.github.str-consulting/pacer-mcp

Pacer revenue-management API as MCP tools: portfolios, pacing, market metrics, Guesty, briefs.

client:VS Code transport:stdio runtime:oci

Install pacer mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pacer-core-url",
      "description": "PACER_CORE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pacer-core-token",
      "description": "PACER_CORE_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "pacer-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/str-consulting/pacer-mcp:1.0.0"
      ],
      "env": {
        "PACER_CORE_URL": "${input:pacer-core-url}",
        "PACER_CORE_TOKEN": "${input:pacer-core-token}"
      }
    }
  }
}

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

pacer mcp in other clients