US government data,
one API key.
20 MCP servers wrapping 161 curated tools over federal procurement, spending, regulatory, economic, energy, climate and health data — hosted, metered, and ready for Claude Code, Cursor, VS Code or any MCP client.
What you get
Each server also has a focused endpoint at/servers/<slug>/mcp
Account & Service Meta
Verify an API key, check remaining quota, and discover servers. Never touches an upstream API.
NOAA Climate Data
Historical climate and weather station data.
GAO Bid Protests
Bid protest decisions -- how agencies actually get challenged.
SAM.gov Exclusions
Debarment and exclusion records -- a compliance gate before any teaming decision.
MARADMIN Intel
Marine Corps MARADMIN/ALMAR monitoring, domain classification, and DoD-AI signal detection.
Bureau of Economic Analysis
Regional GDP, personal income, and input-output tables.
Bureau of Labor Statistics
Employment, CPI, wages, and state labor-market panels.
US Census
Market sizing, demographics, business dynamics, and county-level NAICS data.
FRED
Federal Reserve economic data -- macro series and recession signals.
Energy Information Administration
Electricity, natural gas, petroleum prices, and generation capacity.
USAspending
Federal spending: agency spend velocity, incumbent discovery, expiring pipeline.
SBIR/STTR
Small-business innovation awards and open topics.
openFDA
Drug, device, and recall safety data.
SAM.gov Contract Awards
Contract award data (CDAS) -- the FPDS replacement.
SAM.gov Entity
Entity registration dossiers: the vendor side of the market.
SAM.gov Agency Hierarchy
Agency and sub-agency codes -- the cross-API join key for every other federal dataset.
SAM.gov Opportunities
The federal procurement firehose: pre-solicitations, solicitations, sources sought, awards.
FBI Crime Data
Crime statistics, clearances, and agency-level trends.
Federal Register
Executive orders, proposed rules, and public-inspection lead-time scanning.
Regulations.gov
Rulemaking dockets and comment intelligence.
Connect in one line
Replace $PORB_KEY with a key from your dashboard.
Claude Code
claude mcp add --transport http porb-gov \
https://mcp.porb.dev/mcp \
--header "Authorization: Bearer $PORB_KEY"
Cursor (~/.cursor/mcp.json)
{
"mcpServers": {
"porb-gov": {
"url": "https://mcp.porb.dev/servers/usaspending/mcp",
"headers": { "Authorization": "Bearer ${env:PORB_KEY}" }
}
}
}
VS Code (.vscode/mcp.json)
{
"inputs": [{ "type": "promptString", "id": "porb-key", "description": "Porb MCP key", "password": true }],
"servers": {
"porb-gov": {
"type": "http",
"url": "https://mcp.porb.dev/servers/fred/mcp",
"headers": { "Authorization": "Bearer ${input:porb-key}" }
}
}
}
Raw JSON-RPC
curl -s https://mcp.porb.dev/servers/usaspending/mcp \
-H "Authorization: Bearer $PORB_KEY" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
/mcp exposes all
161 tools at once, which is convenient but measurably degrades model tool-selection.
Prefer /servers/<slug>/mcp when you know which dataset you need.
Pricing
- 250 tool calls / rolling 24 h
- All 20 servers
- Up to 5 API keys
- Community support
- 10000 tool calls / rolling 24 h
- Higher concurrency
- Usage analytics per key
- Priority support
Every server proxies a public US government API. Upstream rate limits are shared, so quotas are enforced per account and results are cached aggressively.