@pipeworx/usaspending
Connect: https://gateway.pipeworx.io/usaspending/mcp · Install: one-click buttons
Tools: 7
The U.S. Treasury’s USAspending.gov data on federal awards: contracts, grants, loans, and direct payments. Every dollar the federal government has awarded since 2008 (with patchier coverage going back to 2001), broken down by recipient, agency, sub-agency, NAICS code, and place of performance. Free, no auth.
Why this matters for AI agents
Where SAM.gov is opportunities (what the government is buying), USAspending is awards (what was actually contracted). For competitive intelligence, lobbying-spend ROI analysis, federal vendor research, or following the money on policy areas, this is the source of truth.
Common flows:
- “How much has X received in federal contracts?” →
get_federal_spending({recipient: "X"})→ award totals by year, agency. - “Who are the top contractors for the DoD?” → spend search filtered by agency.
- “Federal investment in AI / cybersecurity / clean energy?” → keyword + NAICS / PSC code search.
Used by the govcon_contractor_profile and lobbying_activity recipes.
Auth
None. USAspending is fully public, free.
Award classes
| Class | What it is |
|---|---|
| Contracts (FPDS-NG) | Direct procurement; competitive or sole-source |
| Grants | Discretionary or formula awards (research, state grants) |
| Loans | Federal credit programs (SBA, USDA, Education) |
| Direct payments | Social Security, veterans benefits, etc. |
| IDV (Indefinite Delivery Vehicles) | Master contracts; orders flow against them |
For company-level analysis, contracts are usually what matters. Grants matter for universities and nonprofits.
Common pitfalls
- Recipient name normalization. “Lockheed Martin Corporation,” “LOCKHEED MARTIN CORP,” “Lockheed Martin” all appear in the data. Aggregate case-insensitively after stripping legal suffixes for clean totals.
- Parent vs subsidiary. A large company has many subsidiaries, each with separate UEIs. USAspending includes parent-recipient hierarchy fields — use them for true company-level totals.
- Obligated vs outlayed dollars. “Obligated” is what the government committed; “outlayed” is what’s actually been paid. The gap can be years for multi-year contracts.
- NAICS codes for “we sell IT services.” A single contractor can have dozens of NAICS designations. Filtering by NAICS gets you only the awards classified that way; cross-NAICS analysis needs careful aggregation.
- Lag. Most awards appear within 30 days of obligation. The very-most-recent quarter is incomplete and revises upward.
- Unique award IDs. Awards have stable IDs (PIIDs for contracts, FAINs for grants). Use these for citation; recipient-level totals are the rolled-up view.
Recompete calendar — usa_expiring_awards / usa_incumbent_profile
“Which VA IT contracts over $10M expire in the next 12 months, and who holds them” is the core govcon business-development question, and these two tools answer it directly — no key, no upstream throttle.
usa_expiring_awards({agency: "Department of Veterans Affairs", naics: "5415",
min_amount: 10000000, months_ahead: 12})
usa_incumbent_profile({recipient: "Booz Allen"})
usa_expiring_awards returns the incumbent, period of performance, obligated
dollars, agency/sub-agency, NAICS/PSC and a usaspending.gov link per award.
usa_incumbent_profile returns one contractor’s portfolio: active awards, total
obligated, ceiling, expirations at 6/12/18 months, top agencies and NAICS.
These read usaspending_awards_current, a materialized view of one row per
award (626,306 awards from 1,510,983 transactions). Rebuild it after every
pipeline load with select usaspending_refresh_awards_current(); — it also
restamps the mirror_as_of that every response carries.
What will bite you
-
Grain. The base table is one row per transaction. Every modification repeats the award’s PIID, so querying
usaspending_contractsdirectly counts one contract many times and sums its money just as often. Use the view. -
Two different end dates.
period_of_performance_current_end_dateis the recompete decision point.period_of_performance_potential_end_dateis when all options would be exhausted. An award ending in 6 months whose options run 3 more years will be extended, not recompeted — listing it as a lead is a false positive that looks exactly like a real one.options_statusreportsoptions_remain/no_options_remain/unknown, and it isunknownfor everything loaded before 2026-08-28: the potential end date was dropped at ingest and only starts populating on the next pipeline run. -
The end date is the latest transaction’s, not the maximum. 5,299 awards (0.88%) disagree between the two, because a later modification can shorten the period. Checked against api.usaspending.gov, latest-transaction matched upstream 5 times out of 6 and max matched once. Don’t “fix” it to
max(). -
The date can still be stale. A modification filed after
mirror_as_ofmay have extended an award listed here as expiring — one $1.4B VA award read 14 months early for that reason. Theusaspending_urlis the live check. -
IDVs are excluded. They are ordering vehicles with no period of performance, so they have no expiry. 443,315 transactions carry no end date, but only 22,221 of 626,306 awards lack one, because the date is taken from the latest transaction that actually has one.
-
min_amountfilters obligated dollars, not the ceiling. A lightly-used vehicle with a $40M ceiling and $40k of real work does not pass a $10M floor. -
mirror_as_ofcomes from the data, not the snapshot filename. Those have disagreed: the pinned snapshot URL readcontracts-all-20260506.zipwhile the table held action dates through 2026-08-04.
Tools
- usa_spending_by_agency — Break down US federal contract spending by agency for a given fiscal year (default: current year) and optional quarter (1-4). Returns agency names, abbreviations, and dollar amounts from USAspending.g
- usa_award_search — Search US federal PROCUREMENT CONTRACTS / government contract awards for goods and services. Use recipient_name for “contracts won by Lockheed Martin”; keywords searches award descriptions/topics, not
- usa_spending_by_category — Analyze federal spending by industry, product/service, recipient, or agency. Returns spending totals per category. Use for market research and identifying government contracting opportunities.
- usa_recipient_profile — Answer “what federal contracts did [company] win recently?” and get a contractor’s federal contract awards. Dates are optional and default to the last 12 months; the response always states the window
- usa_spending_trends — “How has [agency] contract spending trended over the last N fiscal years?” / “is [agency] spending on X growing?” / “federal spending history for [topic]” — US FEDERAL contract/award spending over tim
- usa_expiring_awards — Federal contracts EXPIRING soon — the recompete calendar. “Which VA IT contracts over $10M expire in the next 12 months?” / “what is up for recompete at DHS next year” / “find follow-on opportunities
- usa_incumbent_profile — Federal contract portfolio for one contractor — “what does Leidos hold and when does it expire”, “which of Booz Allen’s contracts come up for recompete”, incumbent research before a bid. Returns acti
Tools
-
usa_award_search— Search US federal PROCUREMENT CONTRACTS / government contract awards for goods and services. Use recipient_name for contracts won by Lockheed Martin ; keywords searches award descriptions/topics, not -
usa_expiring_awards— Federal contracts EXPIRING soon -- the recompete calendar. Which VA IT contracts over $10M expire in the next 12 months? / what is up for recompete at DHS next year / find follow-on opportunities in N -
usa_incumbent_profile— Federal contract portfolio for one contractor -- what does Leidos hold and when does it expire , which of Booz Allen's contracts come up for recompete , incumbent research before a bid. Returns active -
usa_recipient_profile— Answer what federal contracts did [company] win recently? and get a contractor's federal contract awards. Dates are optional and default to the last 12 months; the response always states the window us -
usa_spending_by_agency— Break down US federal contract spending by agency for a given fiscal year (default: current year) and optional quarter (1-4). Returns agency names, abbreviations, and dollar amounts from USAspending.g -
usa_spending_by_category— Analyze federal spending by industry, product/service, recipient, or agency. Returns spending totals per category. Use for market research and identifying government contracting opportunities. -
usa_spending_trends— How has [agency] contract spending trended over the last N fiscal years? / is [agency] spending on X growing? / federal spending history for [topic] — US FEDERAL contract/award spending over time from