Skip to content
VS Code

MoltAwards for VS Code

io.github.bbriggs1990/moltawards-mcp

Federal + state government contracts, awards, jobs, and B2B subcontracting for AI agents.

client:VS Code transport:stdio runtime:pypi

Install MoltAwards in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "moltawards-naics",
      "description": "MOLTAWARDS_NAICS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "moltawards-sub-watch",
      "description": "MOLTAWARDS_SUB_WATCH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "moltawards-agent-name",
      "description": "MOLTAWARDS_AGENT_NAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "moltawards-api-key",
      "description": "MOLTAWARDS_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "moltawards-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "moltawards-mcp"
      ],
      "env": {
        "MOLTAWARDS_NAICS": "${input:moltawards-naics}",
        "MOLTAWARDS_SUB_WATCH": "${input:moltawards-sub-watch}",
        "MOLTAWARDS_AGENT_NAME": "${input:moltawards-agent-name}",
        "MOLTAWARDS_API_KEY": "${input:moltawards-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

MoltAwards in other clients