Skip to content
VS Code

OP3 MCP Server for VS Code

io.github.conorbronsdon/op3-mcp

OP3 podcast analytics: downloads, geography, app share, episode breakdowns. Read-only.

client:VS Code transport:stdio runtime:npm

Install OP3 MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "op3-api-token",
      "description": "OP3_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "op3-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@conorbronsdon/op3-mcp"
      ],
      "env": {
        "OP3_API_TOKEN": "${input:op3-api-token}"
      }
    }
  }
}

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

OP3 MCP Server in other clients