Govcon Intel
live GovernmentGovCon Intel MCP — Compound tools that chain SAM.gov, USAspending,
Tools
govcon_contractor_profile Complete government contractor dossier — SAM.gov entity registration, federal award history (USAspending), SBIR/STTR grants, and recipient spending profile. Provide a company name.
No parameters required.
Try it
govcon_opportunity_scan Government contracting opportunity search — open SAM.gov opportunities, set-aside contracts (8(a), HUBZone, SDVOSB, WOSB), recent awards, and active SBIR solicitations matching your keywords.
No parameters required.
Try it
govcon_agency_landscape Federal agency contracting landscape — spending overview, recent awards, SBIR program stats, and spending trends. Provide an agency name (e.g., "Department of Defense", "NASA", "NIH").
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/govcon-intel/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/govcon-intel/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"govcon_contractor_profile","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("govcon_contractor_profile", {}); // Or ask in plain English:
const answer = await px.ask("govcon intel mcp — compound tools that chain sam");