Govcon Intel

live Government

GovCon Intel MCP — Compound tools that chain SAM.gov, USAspending,

3 tools
0ms auth
free tier 50 calls/day

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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/govcon-intel/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("govcon_contractor_profile", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("govcon intel mcp — compound tools that chain sam");