US Government Data
FreeNot checkedSearch official US government data from any MCP client: building permits from 10 city open-data portals, federal contract opportunities from SAM.gov with contra
About
Search official US government data from any MCP client: building permits from 10 city open-data portals, federal contract opportunities from SAM.gov with contracting-officer contacts, and the CMS NPI healthcare-provider registry. Open-source TypeScript server; data delivered via Apify's pay-per-result actors using your own Apify token.
README
MCP server for US government data — search building permits, federal contract opportunities (SAM.gov), and the national healthcare provider registry (NPI/NPPES) from Claude, Cursor, or any Model Context Protocol client.
CBLU2005/us-govdata-mcp MCP server
All three data sources are official government publications (city open-data portals, SAM.gov's public extract, the CMS NPPES API) — no HTML scraping, no logins, no fragile selectors. The heavy lifting is done by three production Apify actors that run on your own Apify account.
Tools
| Tool | What it searches | Typical filters | Price* |
|---|---|---|---|
search_building_permits |
Building permits from 10 official city/county open-data sources (NYC, Chicago, LA, Austin, SF, New Orleans, Baton Rouge, Montgomery Co. MD, Norfolk VA) — permit type, status, valuation, contractor name/license | cities, issued date range, permit type, full-text, min valuation | $0.005 / record |
search_federal_contract_opportunities |
Federal RFPs, solicitations, sources-sought and award notices from SAM.gov — with contracting-officer emails and phones | keyword, NAICS, notice type, set-aside (8A, WOSB, HUBZone...), agency, state, dates | $0.004 / record |
search_healthcare_providers |
The official CMS NPI registry of 8M+ US providers and healthcare organizations — specialty, license, practice phone/fax, authorized officials | specialty, state, city, ZIP (wildcards), provider/organization name | $0.002 / record |
* Honest pricing disclosure: these tools run paid, pay-per-result Apify actors published by CBLU. Your Apify account is charged only for records actually returned — there are no subscriptions or start fees. Every tool defaults to 25 results per call, so a typical call costs a fraction of a cent (25 permits ≈ $0.13; 25 contract notices ≈ $0.10; 25 providers ≈ $0.05). Apify's free plan includes monthly platform credit, which is enough to use these tools casually at no cost. Actor pages with full pricing details:
Quick start
1. Get an Apify token (free, ~2 minutes)
- Sign up at https://console.apify.com/sign-up (free plan works).
- Copy your API token from https://console.apify.com/settings/integrations.
The server starts and lists its tools without a token — the token is only needed when a tool is actually called.
2. Add the server to your MCP client
Claude Desktop (claude_desktop_config.json → Settings → Developer → Edit Config):
{
"mcpServers": {
"us-govdata": {
"command": "npx",
"args": ["-y", "github:CBLU2005/us-govdata-mcp"],
"env": {
"APIFY_TOKEN": "your_apify_token_here"
}
}
}
}
Claude Code:
claude mcp add us-govdata -e APIFY_TOKEN=your_apify_token_here -- npx -y github:CBLU2005/us-govdata-mcp
Cursor / Windsurf / other MCP clients (same shape as Claude Desktop):
{
"mcpServers": {
"us-govdata": {
"command": "npx",
"args": ["-y", "github:CBLU2005/us-govdata-mcp"],
"env": { "APIFY_TOKEN": "your_apify_token_here" }
}
}
}
From a local clone:
git clone https://github.com/CBLU2005/us-govdata-mcp.git
cd us-govdata-mcp
npm install && npm run build
# then point your client at: node /path/to/us-govdata-mcp/dist/index.js
Docker:
docker build -t us-govdata-mcp .
docker run -i --rm -e APIFY_TOKEN=your_apify_token_here us-govdata-mcp # stdio
docker run --rm -p 3000:3000 -e APIFY_TOKEN=... us-govdata-mcp --http 3000 # Streamable HTTP
3. Ask your AI agent things like
- "Find building permits for new construction over $500k issued in Austin this month, with contractor names."
- "Any active small-business set-aside cybersecurity solicitations with a response deadline after today? Include the contracting officer's email."
- "List dentists in the greater Miami area (ZIP 331) with their practice phone numbers."*
Transports
- stdio (default) — what desktop MCP clients use:
us-govdata-mcp - Streamable HTTP — stateless endpoint at
POST /mcp, health check atGET /healthz:us-govdata-mcp --http 3000(or setMCP_HTTP_PORT=3000)
Environment variables
| Variable | Required | Purpose |
|---|---|---|
APIFY_TOKEN |
For tool calls | Your Apify API token. Server start & tool listing work without it; tool calls return a setup guide until it is set. |
APIFY_DRY_RUN |
No | Set to 1 to return canned sample records without any network call or charge — the response includes the exact Apify API request that would have been sent. Useful for testing and CI. |
MCP_HTTP_PORT |
No | Start in Streamable HTTP mode on this port instead of stdio. |
How it works
Each tool validates its arguments (zod), builds the actor input, and calls the Apify
API's run-sync-get-dataset-items
endpoint with your token via an Authorization: Bearer header (never in the URL).
The actor runs on the Apify platform under your account and the resulting dataset
items are returned directly as the tool result. This server keeps no state and sees
no data beyond passing it through.
Development
npm install
npm test # builds + runs the full smoke suite (introspection, tokenless
# error path, dry-run request construction, HTTP transport)
The test suite needs no Apify account and no network — it uses APIFY_DRY_RUN=1.
Related
- Apify Store profile with all CBLU actors: https://apify.com/cblu
- Model Context Protocol: https://modelcontextprotocol.io
License
MIT © CBLU
Install US Government Data in Claude Desktop, Claude Code & Cursor
unyly install us-government-dataInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add us-government-data -- npx -y github:CBLU2005/us-govdata-mcpFAQ
Is US Government Data MCP free?
Yes, US Government Data MCP is free — one-click install via Unyly at no cost.
Does US Government Data need an API key?
No, US Government Data runs without API keys or environment variables.
Is US Government Data hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install US Government Data in Claude Desktop, Claude Code or Cursor?
Open US Government Data on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare US Government Data with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
