Skip to content
VS Code

RFP Hub for VS Code

io.github.the-rfp-hub/rfp-hub

Search Ethereum-ecosystem funding opportunities; submit one behind a human approval step.

client:VS Code transport:stdio runtime:npm

Install RFP Hub in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rfphub-api-base",
      "description": "RFPHUB_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rfphub-api-key",
      "description": "RFPHUB_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "rfp-hub": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@the-rfp-hub/mcp"
      ],
      "env": {
        "RFPHUB_API_BASE": "${input:rfphub-api-base}",
        "RFPHUB_API_KEY": "${input:rfphub-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

RFP Hub in other clients