Skip to content
VS Code

raportagent mcp for VS Code

io.github.raportagent/raportagent-mcp

Sourced market and compliance research for Claude Desktop, Claude Code and Cursor.

client:VS Code transport:stdio runtime:npm

Install raportagent mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "raportagent-api-key",
      "description": "RAPORTAGENT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "raportagent-base-url",
      "description": "RAPORTAGENT_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "raportagent-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@raportagent/mcp"
      ],
      "env": {
        "RAPORTAGENT_API_KEY": "${input:raportagent-api-key}",
        "RAPORTAGENT_BASE_URL": "${input:raportagent-base-url}"
      }
    }
  }
}

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

raportagent mcp in other clients