# io.github.smythmyke/govtoolspro-mcp-server (npm · govtoolspro-mcp-server)

Workflow tools for federal contractors: go/no-go scoring, incumbent intel, recompete, NECO.

- Trust score: 63/100 (medium)
- Change this week: +19
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `govtoolspro-mcp-server`: 63/100 (this document), [markdown](https://verifymcp.io/servers/smythmyke-govtoolspro-mcp-server/govtoolspro-mcp-server.md), [page](https://verifymcp.io/servers/smythmyke-govtoolspro-mcp-server/govtoolspro-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `govtoolspro-mcp-server`
- Version: `0.1.3`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 52 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 68/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 1633 tokens (~163/item across 10 items; 10 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add smythmyke-govtoolspro-mcp-server -- npx -y govtoolspro-mcp-server
```

### Codex

```bash
codex mcp add smythmyke-govtoolspro-mcp-server -- npx -y govtoolspro-mcp-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "smythmyke-govtoolspro-mcp-server": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "govtoolspro-mcp-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add smythmyke-govtoolspro-mcp-server --command npx --arg -y --arg govtoolspro-mcp-server
```

### Hermes

```yaml
mcp_servers:
  smythmyke-govtoolspro-mcp-server:
    command: "npx"
    args: ["-y", "govtoolspro-mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "smythmyke-govtoolspro-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "govtoolspro-mcp-server"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 63, +58)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional regression] Security disclosure: fail → unverified
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 5, −14)

- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-31 (score 19, −25)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-27 (score 44)

First indexed and scored.

## MCP tools (10)

### `balance` (~44 tokens)

Return the current GovToolsPro credit balance and subscription status for the authenticated account. Free — exercises auth end-to-end. The extension and the API draw from the same shared credit pool.

Output parameters:

- `balance` (number): Current total credit balance.
- `subscription` (object|null): Active subscription, or null if none.
- `subscriptionCredits` (number): Credits from the active subscription.
- `topupCredits` (number): Credits purchased as one-off top-ups.
- `totalPurchased` (number): Lifetime credits purchased.
- `totalUsed` (number): Lifetime credits consumed.

### `get_solicitation` (~218 tokens)

Retrieve a single SAM.gov solicitation's structured fields by notice ID (or, best-effort, by solicitation number). Returns title, solicitation number, type, NAICS, PSC, set-aside, place of performance, response deadline (with timezone), points of contact, description, and attachment download links. Deterministic, free — pulls from SAM.gov's public opportunity records. This is the entry point for a workflow: feed the returned fields into score_go_no_go, find_incumbents, or find_partners_near.

Input parameters:

- `includeAttachments` (boolean): Include attachment download links (default true). Set false to skip the extra lookup.
- `noticeId` (string): 32-character hex SAM.gov notice ID (the ID in a sam.gov/opp/<id>/view URL). Primary, most reliable input.
- `solicitationNumber` (string): Solicitation number (e.g. '140P6026Q0003'). Best-effort fallback — resolved via SAM.gov search; provide noticeId when you have it.

Output parameters:

- `archiveDate` (string)
- `archived` (boolean)
- `attachments` (array)
- `cancelled` (boolean)
- `description` (string)
- `link` (string)
- `modifiedDate` (string)
- `naicsCode` (string)
- `naicsCodes` (array)
- `noticeId` (string)
- `placeOfPerformance` (object|null)
- `pointOfContact` (array)
- `postedDate` (string)
- `pscCode` (string)
- `responseDeadline` (string)
- `responseTimeZone` (string)
- `setAside` (string)
- `solicitationNumber` (string)
- `title` (string)
- `type` (string)
- `typeLabel` (string)

### `score_go_no_go` (~253 tokens)

Score a federal solicitation as GO / NO-GO (0-100) against a company profile. Detects hard blockers (CMMC certification gaps, geographic/OEM constraints, set-aside ineligibility), scores NAICS match, past performance, and capability fit, and returns a recommendation with red flags and reasons. Deterministic decision-support — no AI, free. Pass the analyzed solicitation documents (from your extension or an analyze-solicitation step) plus your company profile.

Input parameters:

- `documentAnalyses` (array, required): Analyzed solicitation documents (required, at least one). Each item is the structured analysis of a solicitation document (summary, classification with naicsCode/setAside, valueAndScope with placeOfP…
- `incumbentData` (object): Optional incumbent context, e.g. { primaryIncumbent } from find_incumbents.
- `profile` (object): Company profile to score against: company (legalName, address.state), industryCodes.primaryNaics, businessTypes (smallBusiness, sdvosb, ...), capabilities (coreCompetencies, cmmcStatus.level).
- `solicitationData` (object): Optional extra solicitation context, e.g. { responseDeadline }.

Output parameters:

- `blockers` (array)
- `categoryScores` (object)
- `reasons` (array)
- `recommendation` (string): GO / NO-GO / REVIEW.
- `score` (number): 0-100 fit score.

### `find_incumbents` (~211 tokens)

Identify the likely current incumbent(s) for a solicitation using public USAspending + FPDS award data. Returns the primary incumbent (name, award value, period of performance), FPDS competition signals (offers received, set-aside, sole-source flags), and an anticipated next-award start date. Deterministic, free. FPDS failures degrade gracefully (USAspending half stays intact).

Input parameters:

- `anticipatedStartDate` (string): ISO date overriding the responseDeadline-based anticipated-start calculation.
- `fpdsMaxResults` (number): Max FPDS contracts (default 50, max 100).
- `limit` (number): Max USAspending contracts (default 50, max 100).
- `solicitation` (object, required): Solicitation context. naicsCode is REQUIRED. Optional: pscCode, agency, subAgency, office, placeOfPerformance, title, responseDeadline.
- `years` (number): USAspending lookback in fiscal years (default 5, max 10).

Output parameters:

- `anticipatedStartDate` (string)
- `fpdsError` (string|null)
- `fpdsResults` (number)
- `otherIncumbents` (array)
- `primaryIncumbent` (object|null)
- `usaspendingResults` (number)

### `find_partners_near` (~155 tokens)

Find potential teaming partners / subcontractors near a solicitation's place of performance via Google Places. Given a capability keyword and a geocodable address, returns nearby businesses ranked by proximity, enriched (top results) with phone and website. Deterministic, free. Verify capabilities, certifications, and eligibility independently before relying on results.

Input parameters:

- `address` (string, required): Place of performance — any geocodable string, e.g. 'Arlington, VA' or a full street address.
- `keyword` (string, required): Industry/capability term, e.g. 'IT support', 'electrical contractor', 'janitorial services'.
- `radius` (number): Search radius in miles (default 25, max 100).

Output parameters:

- `businesses` (array)
- `placeOfPerformance` (object)
- `totalResults` (number)

### `predict_recompete` (~196 tokens)

Discover federal contracts expiring within a window (recompete opportunities) via public USAspending data, optionally enriched with procurement-history signals (all-options-exercised, offers received, set-aside, competition type). Filter by NAICS, PSC, state, value, and keywords. Returns contracts with days-until-expiration and urgency. Deterministic, free. Expiration/option signals reflect reported data and may lag.

Input parameters:

- `enrich` (boolean): Enrich top results with procurement history (default true).
- `enrichCount` (number): How many to enrich (default 10, max 25).
- `filters` (object): All optional. Narrow the recompete search.
- `limit` (number): Results per page (default 25, max 100).
- `page` (number): Page number (default 1).
- `sortOrder` (string): Sort by End Date (default 'desc').

Output parameters:

- `contracts` (array)
- `hasMore` (boolean)
- `totalCount` (number)

### `lookup_neco_data` (~181 tokens)

Fetch and parse a Navy NECO (Navy Electronic Commerce Online) solicitation page into structured data — solicitation number, title, response deadline, NSN/line items, buyer contact, set-aside, and document links. Deterministic scrape of the public neco.navy.mil site, free. No other govcon MCP exposes NECO data. Pass the full NECO URL when you have it (most reliable); solicitationNumber alone is best-effort.

Input parameters:

- `hkey` (string): Optional NECO hkey — improves solicitationNumber resolution.
- `necoUrl` (string): Full NECO solicitation URL (https://www.neco.navy.mil/...). Primary, most robust input.
- `solicitationNumber` (string): Navy solicitation number. Best-effort — the main NECO page may require an hkey to resolve.

Output parameters:

- `data` (object)
- `requestedUrl` (string)
- `summary` (object)

### `lookup_labor_rates` (~132 tokens)

Benchmark federal labor rates for a NAICS code and/or a specific labor category. Returns GSA CALC awarded ceiling rates (min/median/max by category) plus BLS OEWS wage data with a +55% government wrap (loaded hourly) estimate. Free. Public GSA + BLS data — verify allowable rates against the RFP.

Input parameters:

- `laborCategory` (string): Specific labor category for a direct GSA search, e.g. 'program manager', 'software engineer'.
- `naicsCode` (string): NAICS code — maps to GSA labor categories + BLS SOC occupations.

Output parameters:

- `blsWages` (array)
- `gsaRates` (array)
- `summary` (object)

### `analyze_award_patterns` (~131 tokens)

Analyze how contracts in a NAICS are typically awarded: award-size distribution, competition mix (full & open / limited / sole-source), bid intensity (single-bid rate, expected bidders), contract vehicles, and pricing types. From public USAspending + FPDS data. Costs 3 credits.

Input parameters:

- `naicsCode` (string, required): NAICS code (required).
- `pscCode` (string): Optional PSC code to narrow the analysis.
- `state` (string): Optional 2-letter place-of-performance state filter.
- `years` (number): Lookback in years (default ~3).

Output parameters:

- `awardSizeDistribution` (array)
- `bidStatistics` (object|null)
- `competition` (object|null)
- `contractVehicles` (array)
- `pricingTypes` (array)

### `analyze_market` (~112 tokens)

Full market-intelligence snapshot for a NAICS: 5-year federal spending trend, industry size (Census), top contractors with market share + HHI concentration, set-aside distribution, geographic distribution, and contract-vehicle usage. From public USAspending + Census data. Costs 5 credits.

Input parameters:

- `naicsCode` (string, required): NAICS code (required).
- `pscCode` (string): Optional PSC code for sharper competitor filtering.
- `setAside` (string): Optional set-aside context.

Output parameters:

- `concentration` (object|null)
- `contractVehicles` (array)
- `federalSharePct` (number|null)
- `geographicDistribution` (array)
- `industryContext` (object|null)
- `recentLargeAwards` (array)
- `setAsideDistribution` (array)
- `spendingTrend` (array)
- `topContractors` (array)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/smythmyke-govtoolspro-mcp-server/govtoolspro-mcp-server#diagnostics

## Score history

- 2026-08-03: 63
- 2026-08-02: 63
- 2026-08-01: 5
- 2026-07-31: 19
- 2026-07-30: 44
- 2026-07-28: 44
- 2026-07-27: 44

## Links

- npm package: https://www.npmjs.com/package/govtoolspro-mcp-server
- Socket report: https://socket.dev/npm/package/govtoolspro-mcp-server
- Repository: https://github.com/smythmyke/govtoolspro-mcp-server
- Website: https://govtoolspro.com/
- Changelog RSS feed: https://verifymcp.io/servers/smythmyke-govtoolspro-mcp-server/govtoolspro-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/smythmyke-govtoolspro-mcp-server/govtoolspro-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/smythmyke-govtoolspro-mcp-server/govtoolspro-mcp-server
