Skip to content
VS Code

Catalyst Edge Research for VS Code

io.github.rm0nroe/catalyst-edge-mcp

Source-linked market intelligence for AI agents researching public-company tickers.

client:VS Code transport:stdio runtime:pypi

Install Catalyst Edge Research in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "catalyst-edge-sec-user-agent",
      "description": "CATALYST_EDGE_SEC_USER_AGENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "catalyst-edge-evidence-store",
      "description": "CATALYST_EDGE_EVIDENCE_STORE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "catalyst-edge-gdelt",
      "description": "CATALYST_EDGE_GDELT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "catalyst-edge-bluesky",
      "description": "CATALYST_EDGE_BLUESKY",
      "password": true
    }
  ],
  "servers": {
    "catalyst-edge-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "catalyst-edge-mcp"
      ],
      "env": {
        "CATALYST_EDGE_SEC_USER_AGENT": "${input:catalyst-edge-sec-user-agent}",
        "CATALYST_EDGE_EVIDENCE_STORE": "${input:catalyst-edge-evidence-store}",
        "CATALYST_EDGE_GDELT": "${input:catalyst-edge-gdelt}",
        "CATALYST_EDGE_BLUESKY": "${input:catalyst-edge-bluesky}"
      }
    }
  }
}

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

Catalyst Edge Research in other clients