samgov-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@samgov-mcpFind recent federal contract opportunities for IT services in Virginia"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
samgov-mcp
An MCP server over the SAM.gov Contract Opportunities API, built for agents that have to read United States federal solicitations and then be believed about what they read.
Everything this server returns carries the exact URL it came from. Anything SAM.gov did not send
comes back as null with its name listed, never as a zero, an empty string, or a plausible guess.
npm install
npm run smoke # 20 checks, no API key, no network
npm run dev # starts the server on stdioRun it with no key and it serves recorded fixtures, so you can inspect every tool contract before signing up for anything.
Why this exists
I build AI systems that live inside a company's operation and answer from its own data. The failure that costs you the room is never a model that underperforms. It is a confident number nobody can trace back to anything.
An MCP server is where that gets decided. By the time a figure reaches the model it is just a token, and no prompt reliably repairs a tool that quietly returned the wrong record. So the discipline goes in the tool layer, where it can be tested.
Related MCP server: fpds-mcp
The envelope
Every result has the same shape:
{
"source": {
"url": "https://api.sam.gov/opportunities/v2/search?postedFrom=07%2F01%2F2026&...&api_key=REDACTED",
"retrieved_at": "2026-08-07T18:33:52.792Z",
"mode": "live"
},
"data": { "returned": 2, "total_records_upstream": 412, "notices": [ ... ] },
"missing": ["notices[1].response_deadline", "notices[1].set_aside_code"],
"abstained": { "reason": "..." }
}source is the request that produced the payload, with the API key stripped so a transcript
never leaks a credential.
missing names every field the upstream did not provide. SAM.gov signals "not provided" three
different ways, null, "", and an object whose inner name is "", and a model cannot tell those
apart from real values. They all become null here, and they all get named.
abstained appears when the server declines. "I could not find this" and "this does not exist"
are different answers, and collapsing them into an empty list is how an agent ends up telling
somebody a solicitation was cancelled when it was simply posted outside the window it searched.
data.returned is counted off the array actually being returned. total_records_upstream is
reported beside it, separately, because they are different numbers and mixing them is how a report
claims a pipeline processed 412 documents when it read 10.
Tools
Tool | What it does |
| Search a posted-date window. Filters for NAICS, procurement type, set-aside, state, title |
| One notice by its exact solicitation number |
| The downloadable resource links for one notice |
| Download one attachment |
| Which mode it is in and where the data is coming from |
Two things I got wrong, written down
1 · A 404 from this gateway means the key is bad, not the path.
api.sam.gov answers 404 with an empty body for every path when the API key is missing or
unrecognised, including paths that exist. DEMO_KEY does not work, because SAM.gov runs its own
gateway rather than the shared api.data.gov one. I spent a while probing endpoint variants before
realising the endpoint was never the problem. The client now says so in the error text, because the
obvious reading of a 404 sends you somewhere useless.
2 · The first version of this server did the exact thing it was built to prevent.
get_solicitation originally ended with ?? rows[0], a harmless-looking fallback: if the exact
number is not found, use the first result. But SAM.gov's solnum filter is fuzzy and returns
neighbouring notices. So for any number that did not exist, the server would have confidently handed
back a different solicitation under the number that was asked for. Different deadline, different
set-aside, different scope.
The smoke test did not catch it, because I had asserted that the call returned something. It now asserts abstention, and the abstention message names the neighbours it refused to pass off:
No notice numbered exactly "DOES-NOT-EXIST-0000" was posted between 07/01/2026 and 07/31/2026.
The search returned 2 nearby notice(s) which are NOT this one: FIXTURE-70FA-26-R-0001, ...It is the same lesson as the first run of any eval suite. The first pass grades your harness, not the thing you pointed it at.
Use it
Live. Generate a free key at sam.gov under Account Details → Public API Key, then:
export SAM_API_KEY=your-key
npm run buildClaude Desktop or Claude Code, in claude_desktop_config.json or via claude mcp add:
{
"mcpServers": {
"samgov": {
"command": "node",
"args": ["/absolute/path/to/samgov-mcp/dist/index.js"],
"env": { "SAM_API_KEY": "your-key" }
}
}
}Fixtures. Omit SAM_API_KEY and it runs offline against fixtures/search.json, which is
synthetic and labelled as such inside the file. Every tool contract, the grounding envelope and both
abstention paths are exercised without a credential. SAM_MODE=live|fixtures overrides the default.
Environment
Variable | Default | Meaning |
| none | Free key from SAM.gov. Its presence is what selects live mode |
| auto |
|
|
| Upstream request timeout |
|
| Refuse attachments larger than this rather than filling a context window |
Notes on the upstream
postedFromandpostedToare mandatory,MM/dd/yyyy, at most one year apart. This server refuses other formats at the schema rather than reformatting them, so a wrong window fails loudly instead of silently returning the wrong year.SAM.gov puts a URL in the
descriptionfield, not prose. It is returned asdescription_link, so an agent does not quote a link as if it were the scope of work.Attachments in binary formats are reported with their content type and byte length rather than being decoded into noise. Extracting fields from fillable government forms is a separate step and is deliberately not guessed at here.
Status
Working: the five tools, the grounding envelope, both abstention paths, fixtures mode, 20 smoke checks over the real MCP stdio protocol driven by the reference client.
Next: requirement extraction from fillable PDFs into schema-validated JSON, where every extracted field carries the page and span it came from, plus an eval suite over that extraction using the harness in agent-evals.
MIT.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceThe most comprehensive keyless federal-data MCP server. 36 tools for SAM.gov + USAspending + Federal Register + eCFR + Grants.gov. No API key, no registration, no signup. Works in Claude Desktop, Claude Code, Codex CLI, Cursor, Continue, Gemini CLI, and any MCP-aware host.Last updated1001374MIT
- Flicense-qualityCmaintenanceMCP server for querying U.S. Federal Procurement Data System (FPDS-NG) to search federal contract actions by keyword, agency, NAICS, or vendor, with USDC micropayments via x402.Last updated
- AlicenseAqualityCmaintenanceRead-only MCP server for exploring US federal spending data via the USAspending.gov API, enabling natural language queries on awards, agencies, recipients, and spending trends.Last updated12MIT
- Flicense-qualityDmaintenanceModel Context Protocol (MCP) server that provides access to the Grants.gov API for searching and retrieving federal grant opportunities.Last updated
Related MCP Connectors
SAM.gov MCP — Federal contract opportunities and entity registration data
Government contract search and federal procurement data: SAM.gov opportunities + USASpending awards.
Search US grants + federal contracts (Grants.gov + SAM.gov) from any LLM.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/juanmplazasg-lgtm/samgov-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server