Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

smythmyke/govtoolspro-mcp-server MCP server](https://glama.ai/mcp/servers/smythmyke/govtoolspro-mcp-server/badges/score.svg)](https://glama.ai/mcp/servers/smythmyke/govtoolspro-mcp-server) πŸ“‡ ☁️ - Workflow tools for US federal contractors β€” go/no-go bid...

README.md

GovToolsPro MCP Server

![npm version](https://www.npmjs.com/package/govtoolspro-mcp-server) ![MCP Registry](https://registry.modelcontextprotocol.io/v0/servers?search=govtoolspro) ![Glama](https://glama.ai/mcp/servers/smythmyke/govtoolspro-mcp-server) ![smithery badge](https://smithery.ai/servers/smythmyke/govtoolspro-mcp-server) ![License: MIT](LICENSE)

An MCP server that gives Claude (and any MCP client) workflow tools for federal contractors β€” not raw data access, but decisions: go/no-go scoring, incumbent intelligence, teaming-partner search, recompete prediction, Navy NECO lookup, SAM.gov solicitation retrieval, and market intelligence (labor rates, award patterns, market analysis).

It wraps the live GovToolsPro API. You bring an API key; the server proxies your calls.

Tools

| Tool | Cost | What it does | |---|---|---| | balance | free | Credit balance + subscription status. | | get_solicitation | free | Notice ID (or solicitation number) β†’ structured SAM.gov fields (NAICS, PSC, set-aside, place of performance, deadline, contacts, attachment links). The workflow entry point. | | score_go_no_go | free | Score a solicitation GO / NO-GO (0–100) against your company profile, with hard-blocker detection (CMMC, geographic, set-aside). | | find_incumbents | free | Identify the current incumbent via USAspending + FPDS, with competition signals and anticipated next-award date. | | find_partners_near | free | Rank nearby teaming partners / subcontractors by proximity for a place of performance. | | predict_recompete | free | Discover expiring contracts (recompete opportunities) by NAICS/PSC/state/value, enriched with option-exercise signals. | | lookup_neco_data | free | Parse a Navy NECO (neco.navy.mil) solicitation into structured fields. No other govcon MCP has this. | | lookup_labor_rates | free | Benchmark federal labor rates for a NAICS / labor category β€” GSA CALC awarded ceiling rates + BLS OEWS wages with a government wrap estimate. | | analyze_award_patterns | 3 credits | How contracts in a NAICS are awarded: award-size distribution, competition mix, bid intensity, contract vehicles, pricing types. | | analyze_market | 5 credits | Market-intelligence snapshot for a NAICS: 5-year spend trend, industry size, top contractors + HHI concentration, set-aside mix, geography, contract vehicles. |

Every tool returns decision-support output with a disclaimer β€” verify against the official solicitation before relying on results. Credits are drawn from the shared GovToolsPro pool (extension + API + connector all bill the same balance); free tools never deduct.

Install

Add to your MCP client config (Claude Desktop, Claude Code, Cursor, Cline, Zed, …):

{
  "mcpServers": {
    "govtoolspro": {
      "command": "npx",
      "args": ["-y", "govtoolspro-mcp-server"],
      "env": { "GOVTOOLSPRO_API_KEY": "gtp_live_..." }
    }
  }
}

Get an API key

Create a key in the GovToolsPro extension β†’ Profile β†’ API Keys tab (format gtp_live_... / gtp_test_...).

Use as a Claude connector (remote MCP)

Prefer not to run anything locally? GovToolsPro is also a hosted remote MCP server you can add to Claude as a connector β€” no install, no API key, sign in with your GovToolsPro account.

  • Remote MCP URL: https://mcp.govtoolspro.com/api/mcp
  • In Claude: Settings β†’ Connectors β†’ Add custom connector, paste the URL, and leave the OAuth fields blank (the server self-registers via Dynamic Client Registration).
  • You'll be sent to auth.govtoolspro.com to sign in; Claude then connects over OAuth 2.1. Toggle the connector on in a conversation to use its tools.

The same 10 tools are available over the connector, billed against the same shared credit balance as the extension and the stdio package.

Configuration

| Env var | Required | Default | |---|---|---| | GOVTOOLSPRO_API_KEY | yes | β€” | | GOVTOOLSPRO_API_BASE | no | https://mcp.govtoolspro.com/api/v1/workflows |

Local development

npm install
npm run build

# end-to-end stdio smoke test against the live API
GOVTOOLSPRO_API_KEY=gtp_test_... npm run smoke

To point a client at your local build:

{
  "command": "node",
  "args": ["/absolute/path/to/govtoolspro-mcp-server/dist/index.js"],
  "env": { "GOVTOOLSPRO_API_KEY": "gtp_test_..." }
}

Notes

  • Workflow MCP, not a data wrapper. Competing govcon MCPs return raw SAM.gov/FPDS JSON; these tools return synthesized decisions.
  • CUI safety. The API rejects content with CUI / FOUO / Distribution-Statement markings; those rejections surface to the client as clear errors. Do not submit controlled content.
  • No warranty. Output is decision support only β€” not legal, contractual, or award-outcome advice.

Troubleshooting

| Symptom | Cause / fix | |---|---| | Out of credits / 402 | Three tools are metered (analyze_market 5, analyze_award_patterns 3). Check balance, or top up at govtoolspro.com. Free tools never deduct. | | Connector keeps asking you to sign in / 401 | The remote connector requires OAuth β€” complete sign-in at auth.govtoolspro.com, then toggle the connector on in the conversation ("Search and tools"). | | No data for this NAICS (502) | That NAICS has no federal activity in the window β€” you are not charged. Try a broader NAICS or fewer filters. | | CUI rejection error | The API rejects content marked CUI / FOUO / Distribution-Statement. Remove controlled content and retry. | | get_solicitation returns nothing | Use the 32-char notice ID from the sam.gov/opp/<id>/view URL. Some archived/cancelled notices may be unavailable. | | Invalid API key (stdio) | Ensure GOVTOOLSPRO_API_KEY is a gtp_live_… / gtp_test_… key from the extension's Profile β†’ API Keys tab. |

License

MIT Β© Michael Smyth

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Search servers.