Hosted Model Context Protocol servers

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.

POST https://mcp.porb.dev/mcp
20
Servers
161
Curated tools
12
Data domains
Bearer
API key auth

What you get

Each server also has a focused endpoint at /servers/<slug>/mcp
Account

Account & Service Meta

Verify an API key, check remaining quota, and discover servers. Never touches an upstream API.

4 tools
list_serverspingquota_statuswhoami
Climate

NOAA Climate Data

Historical climate and weather station data.

8 tools · upstream key included
climate_normals_for_countydatatypes_for_stationextreme_event_historylocations_for_staterecent_extreme_precip_state+3 more
Compliance

GAO Bid Protests

Bid protest decisions -- how agencies actually get challenged.

8 tools
protest_decision_pdf_urlprotest_velocity_by_agencyprotests_by_protesterprotests_for_agencyprotests_for_solicitation+3 more
Compliance

SAM.gov Exclusions

Debarment and exclusion records -- a compliance gate before any teaming decision.

5 tools · upstream key included
exclusion_detailexclusions_for_entityexclusions_searchis_excludedrecent_exclusions_by_agency
Defense

MARADMIN Intel

Marine Corps MARADMIN/ALMAR monitoring, domain classification, and DoD-AI signal detection.

11 tools · upstream key included
analyze_maradmindo_ai_press_scanget_maradmin_full_texthackathon_form_diffhackathon_form_snapshot+6 more
Economics

Bureau of Economic Analysis

Regional GDP, personal income, and input-output tables.

9 tools · upstream key included
county_gdpdiscover_dataset_parametersdiscover_line_codesgdp_by_industryinput_output_matrix+4 more
Economics

Bureau of Labor Statistics

Employment, CPI, wages, and state labor-market panels.

8 tools · upstream key included
cpi_lookupemployment_by_industrylatest_macro_panelseries_data_batchseries_id_resolver+3 more
Economics

US Census

Market sizing, demographics, business dynamics, and county-level NAICS data.

12 tools · upstream key included
acs_demographicsbusiness_dynamics_statscbp_market_size_by_naics_countycbp_market_size_by_naics_statecbp_market_size_us_total+7 more
Economics

FRED

Federal Reserve economic data -- macro series and recession signals.

8 tools · upstream key included
cpi_trendgdp_trendmacro_indicators_todayrelease_calendarseries_metadata+3 more
Energy

Energy Information Administration

Electricity, natural gas, petroleum prices, and generation capacity.

10 tools · upstream key included
co2_emissions_statediscover_route_metadataelectricity_retail_price_stateelectricity_retail_price_usgasoline_retail_price+5 more
Federal spending

USAspending

Federal spending: agency spend velocity, incumbent discovery, expiring pipeline.

8 tools
agency_spend_velocityexpiring_pipelinefind_competitor_awardsincumbent_for_opportunitynaics_market_share+3 more
Funding

SBIR/STTR

Small-business innovation awards and open topics.

11 tools
dsip_active_solicitation_cyclessbir_award_for_topic_codesbir_award_velocitysbir_awards_by_agencysbir_awards_by_firm+6 more
Health

openFDA

Drug, device, and recall safety data.

10 tools · upstream key included
device_510k_clearancesdevice_adverse_eventsdevice_classification_lookupdevice_recalls_recentdrug_adverse_events+5 more
Procurement

SAM.gov Contract Awards

Contract award data (CDAS) -- the FPDS replacement.

6 tools · upstream key included
award_by_piidawards_by_agencyawards_by_ueiawards_in_windowrecent_awards_by_naics+1 more
Procurement

SAM.gov Entity

Entity registration dossiers: the vendor side of the market.

6 tools · upstream key included
entity_by_cageentity_by_ueientity_dossiernaics_codes_for_entityregistration_status+1 more
Procurement

SAM.gov Agency Hierarchy

Agency and sub-agency codes -- the cross-API join key for every other federal dataset.

4 tools · upstream key included
contracting_offices_undercrosswalk_codesorg_treeresolve_agency
Procurement

SAM.gov Opportunities

The federal procurement firehose: pre-solicitations, solicitations, sources sought, awards.

9 tools · upstream key included
agency_opportunity_velocityamendments_for_solicitationdaily_opportunity_sweepdescription_text_fetchnotice_by_id+4 more
Public safety

FBI Crime Data

Crime statistics, clearances, and agency-level trends.

8 tools · upstream key included
agencies_in_stateclearance_rates_by_offensecrime_stats_by_agencycrime_trend_nationalfind_agency_by_name+3 more
Regulatory

Federal Register

Executive orders, proposed rules, and public-inspection lead-time scanning.

8 tools
agency_metadatadaily_briefing_eo_pulldocuments_by_agencyeo_by_document_numbereo_search+3 more
Regulatory

Regulations.gov

Rulemaking dockets and comment intelligence.

8 tools · upstream key included
commenters_for_topiccomments_on_documentdocket_by_iddockets_by_agencydocument_by_id+3 more

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"}'
A focused endpoint beats the aggregate. /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

Free
$0
for evaluation and side projects
  • 250 tool calls / rolling 24 h
  • All 20 servers
  • Up to 5 API keys
  • Community 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.