streamable-httpMITupdated 25d ago
GovAuctions.app is a free public site for finding government surplus auctions: live listings from GSA and other government sellers, alongside what comparable lots actually sold for. This repo is its MCP server, a second front door onto the same data for agents and code.
What can you do with govauctions app?
GovAuctions MCP server
GovAuctions.app is a free public site for finding government surplus auctions: live listings from GSA and other government sellers, alongside what comparable lots actually sold for. This repo is its MCP server, a second front door onto the same data for agents and code.
Agent-callable tools for government-surplus auction data: search live listings, pull real sold-price comps, and get a 0–100 Flip Score resale signal, from the same engine behind the site.
It exposes four read-only tools:
| Tool | What it does |
|---|---|
search_listings |
Search live surplus auction listings (facts only). Filter by country, state, category, source, keyword, price. |
get_listing |
Fetch one listing by id (live or archived). |
get_sold_comps |
Sold-price range (25th / median / 75th percentile) for a described item, from past government auctions. |
get_flip_score |
Flip Score resale signal for a listing: estimated value, effective bid, and discount. |
All tools are read-only. Get an API key (free tier available) at https://govauctions.app/developers.
Use it (two ways)
1. Hosted (remote) — no install
Point any client that speaks remote MCP at the hosted Streamable HTTP endpoint:
{
"mcpServers": {
"govauctions": { "url": "https://govauctions.app/api/mcp" }
}
}
get_sold_comps is open on the hosted endpoint; the other three tools read your
key from the request. See the developer docs.
2. Local (stdio) — this file
A dependency-free Node wrapper (Node 18+) over the REST Data API. Download
govauctions-mcp.mjs and add it to your client:
{
"mcpServers": {
"govauctions": {
"command": "node",
"args": ["/absolute/path/to/govauctions-mcp.mjs"],
"env": { "GOVAUCTIONS_API_KEY": "gak_your_key" }
}
}
}
Config (env):
GOVAUCTIONS_API_KEY— required. Your key from https://govauctions.app/developers/keysGOVAUCTIONS_API_BASE— optional. Defaults tohttps://govauctions.app/api/v1
API
The tools wrap the public REST Data API. OpenAPI spec: https://govauctions.app/api/v1/openapi.json
License
MIT — see LICENSE.
Install
Add govauctions app to your client. Pick the one you use.
claude mcp add --transport http govauctions-app https://govauctions.app/api/mcpcodex mcp add govauctions-app --url https://govauctions.app/api/mcp{
"mcpServers": {
"govauctions-app": {
"url": "https://govauctions.app/api/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"govauctions-app": {
"type": "http",
"url": "https://govauctions.app/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"govauctions-app": {
"url": "https://govauctions.app/api/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"govauctions-app": {
"serverUrl": "https://govauctions.app/api/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance25/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 17 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.2Latest | Aug 14, 2026 |
| 1.0.1 | Jul 28, 2026 |
| 1.0.0 | Jul 7, 2026 |