Skip to content
VS Code

frontrun mcp server for VS Code

io.github.jongall45/frontrun-mcp-server

Track what 1,000+ VCs follow on X to surface startups before their round. Signal for AI agents.

client:VS Code transport:stdio runtime:npm

Install frontrun mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "frontrun-api-key",
      "description": "FRONTRUN_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "frontrun-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "frontrun-mcp-server"
      ],
      "env": {
        "FRONTRUN_API_KEY": "${input:frontrun-api-key}"
      }
    }
  }
}

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

frontrun mcp server in other clients