Back to Browse

Govauctions MCP Server

Developer ToolsLow Risk10.0MCP RegistryRemote
Free

Server data from the Official MCP Registry

Live listings, sold prices and resale scores from GovAuctions.app, the public surplus-auction site.

About

Live listings, sold prices and resale scores from GovAuctions.app, the public surplus-auction site.

Remote endpoints: streamable-http: https://govauctions.app/api/mcp

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.

8 tools verified · Open access · No issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "app-govauctions-govauctions": {
      "url": "https://govauctions.app/api/mcp"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

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:

ToolWhat it does
search_listingsSearch live surplus auction listings (facts only). Filter by country, state, category, source, keyword, price.
get_listingFetch one listing by id (live or archived).
get_sold_compsSold-price range (25th / median / 75th percentile) for a described item, from past government auctions.
get_flip_scoreFlip 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):

API

The tools wrap the public REST Data API. OpenAPI spec: https://govauctions.app/api/v1/openapi.json

License

MIT — see LICENSE.

Reviews

No reviews yet

Be the first to review this server!