Skip to content
VS Code

govtoolspro mcp server for VS Code

io.github.smythmyke/govtoolspro-mcp-server

Workflow tools for federal contractors: go/no-go scoring, incumbent intel, recompete, NECO.

client:VS Code transport:stdio runtime:npm

Install govtoolspro mcp server in VS Code

.vscode/mcp.json

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

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

govtoolspro mcp server in other clients