Us Gov Data
FreeNot checkedMCP server for querying US federal contracts and public company financial data from USAspending and SEC EDGAR. Enables searching expiring contracts, screening c
About
MCP server for querying US federal contracts and public company financial data from USAspending and SEC EDGAR. Enables searching expiring contracts, screening companies by metrics, and retrieving financial histories.
README
An MCP server for US government data. Ask your AI assistant which federal contracts are expiring, or which public companies had the most revenue last year — and get answers you can verify against the government's own records.
Built on the US Treasury's USAspending API and the SEC's EDGAR XBRL data. No scraping, no API key, no account, no personal data.
Why this exists
Both of these sources publish everything and let you query almost none of it.
usaspending.gov cannot search by contract end date. But when a federal contract's period of performance ends, the work usually has to be re-competed — and those recompetes are the highest-probability opportunities in government contracting, visible in public data months before any solicitation appears.
sec.gov serves filings one company at a time. There is no way on the site to ask which public companies had revenue over $100 billion, or which hold the most cash. The SEC's frames API can answer that across all ~5,800 filers in one call, if you already know the XBRL tag and the period format.
This server answers the questions those sites can't.
Four tools
find_expiring_contracts — recompetes
Federal contracts coming up for re-bid, with the incumbent and days remaining. expiring_after_days sets your bid lead time, because a contract ending next week is useless to prepare for.
{
"days_until_expiry": 120,
"recipient": "PERATON ENTERPRISE SOLUTIONS LLC",
"amount_usd": 682369225.00,
"awarding_agency": "General Services Administration",
"verify_url": "https://www.usaspending.gov/award/..."
}
search_federal_contracts
Awarded contracts by agency, keyword, date, or dollar amount. Who is winning federal work, what an agency spends, a competitor's history.
screen_public_companies
Rank every US public company by any reported financial metric.
"Which companies had revenue over $200 billion in 2023?"
{ "company": "Walmart Inc.", "value": 648125000000, "unit": "USD",
"period_end": "2023-12-31", "period_type": "annual",
"verify_url": "https://www.sec.gov/Archives/edgar/data/104169/..." }
company_financial_history
One company's reported history of a metric — revenue, net income, assets, cash flow — deduplicated, with the form type and filing date on each record.
Everything is verifiable
Each record carries a verify_url to the government filing it came from. Open it and compare.
That matters most with an AI in the loop: when an assistant reports a dollar figure, you should be able to check it against the source rather than trust the chain. If a value ever disagrees with the official record, that is a bug — please open an issue.
Three traps this handles for you
Raw SEC data misleads in three specific ways, each silent — you get a plausible wrong number, not an error.
- A 10-Q reports the quarter and the year-to-date with the same end date. Comparing net income across filings silently mixes a three-month figure with a nine-month one. Every record carries
period_type, and you can filter on it. - The same fact recurs across filings with different values. This year's 10-K restates last year's figures. Deduplicated to one record per period, most recent filing winning — the SEC's own treatment of restatements.
- Companies switch XBRL tags over time. Microsoft filed
Revenuesuntil 2010 and a different tag afterwards. Taking the first tag that returns data yields a stale partial history; this merges across all of them.
Install
uvx --from git+https://github.com/groundtruthtools/us-gov-data-mcp us-gov-data-mcp
Claude Desktop — add to claude_desktop_config.json:
{
"mcpServers": {
"us-gov-data": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/groundtruthtools/us-gov-data-mcp",
"us-gov-data-mcp"
],
"env": { "SEC_USER_AGENT": "Your Name [email protected]" }
}
}
}
Works with any MCP client: Claude Desktop, Claude Code, Cursor, VS Code.
SEC_USER_AGENT is worth setting. SEC's fair-access policy requires a User-Agent containing a contact address, and requests without one get a 403. A default is included so the tools work out of the box, but identifying yourself is the polite thing and keeps you off a shared identity.
One quirk, learned the hard way: do not put a URL in that string. SEC returns 403 for any User-Agent containing one. Your Name [email protected] works; adding github.com/... does not.
Not on PyPI yet, so install from the repository. When it lands there this becomes a plain uvx us-gov-data-mcp.
Honest limits
- Contracts: awarded, not open solicitations. For published bids, use SAM.gov.
- Contracts: federal only, no data before fiscal year 2008.
- Recompete search covers contracts with activity in the past year, because USAspending caps how deep results can be paged. A long-dormant contract may not appear, and an over-broad search says so rather than returning a confidently empty list.
- SEC: XBRL coverage starts around 2009, and only covers concepts companies actually tagged. Smaller filers tag less.
- It reports; it does not compute. No ratios, growth rates, or derived metrics — those would be our arithmetic rather than the filing, and you could not verify them against the source.
- Not investment advice. It is a data-reformatting tool.
Also on Apify
The same logic runs as hosted tools, no install required:
Data sources and licence
Contracts: USAspending.gov, US Department of the Treasury, published under the DATA Act. Financials: SEC EDGAR, US Securities and Exchange Commission. Both public domain. Code: MIT.
Installing Us Gov Data
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/groundtruthtools/us-gov-data-mcpFAQ
Is Us Gov Data MCP free?
Yes, Us Gov Data MCP is free — one-click install via Unyly at no cost.
Does Us Gov Data need an API key?
No, Us Gov Data runs without API keys or environment variables.
Is Us Gov 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 Gov Data in Claude Desktop, Claude Code or Cursor?
Open Us Gov 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 mcpdotdirectAmap Maps Mcp Server
MCP server for using the AMap Maps API
by duxiaohuiSupabase
Database, auth and storage
by SupabaseEverything
Reference / test server with prompts, resources, and tools.
Git
Tools to read, search, and manipulate Git repositories.
Sequential Thinking
Dynamic and reflective problem-solving through thought sequences.
Time
Time and timezone conversion capabilities.
Compare Us Gov Data with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
