Back to MCP Servers

GovTribe MCP Server

Official MCP server for GovTribe, providing AI agents with live access to U.S. federal, state, and local procurement intelligence, awards, vendors, and forecasts.

Government & Nonprofit by GovTribe (GovExec Media Group) API Key active
Overview

GovTribe is a government contracting (GovCon) market intelligence platform owned by GovExec Media Group. Its official MCP server, launched in early 2026, connects AI clients such as Claude, ChatGPT, Microsoft 365 Copilot, and custom Anthropic API agents directly to GovTribe's proprietary dataset and to journalism from GovExec properties including Government Executive, Defense One, and Washington Technology.

The server exposes tools for searching federal contract opportunities, awards, IDVs, contract vehicles, forecasts, vendors, agencies, contacts, grants, and state and local procurement data. It also includes write-capable tools for managing pipelines, pursuits, stages, tasks, and saved searches inside a user's GovTribe account, plus analytical helpers (BLS occupational wage data, labor ceiling rate benchmarks, chart and geo map renderers) and a vector store for indexing custom documents.

The server is hosted by GovTribe at https://govtribe.com/mcp as a Streamable HTTP MCP endpoint authenticated with a user-issued API key. Usage is billed on a credit basis separate from the GovTribe subscription, with 100 complimentary credits available for new trial users.

Tools

Tool Description
search_federal_contract_opportunities Search active and historical federal contract opportunities (e.g. SAM.gov style solicitations).
search_federal_contract_awards Search awarded federal contracts by agency, vendor, NAICS, dollar value, and date.
search_federal_contract_idvs Search Indefinite Delivery Vehicles (IDVs) such as BPAs, IDIQs, and GWACs.
search_federal_contract_vehicles Search known federal contract vehicles available for ordering.
search_federal_forecasts Search forecasted federal acquisitions and predicted spending.
search_federal_grant_opportunities Search federal grant opportunities, programs, and awards.
search_state_and_local Search state and local opportunities, contracts, IDVs, and vehicles.
search_vendors Look up vendors/contractors with profile and award history.
search_contacts Search government and industry contacts by name, agency, or role.
search_agencies Search federal, state, and local agencies and sub-organizations.
search_naics_psc_unspsc_nigp Look up NAICS, PSC, UNSPSC, and NIGP classification codes.
search_line_items Search contract line items (CLINs) and quantities.
search_major_defense_programs Search Major Defense Acquisition Programs (MDAPs).
search_news_articles Search GovExec, Defense One, Washington Technology, and Government Executive coverage.
search_government_files Search government documents and attachments referenced in GovTribe records.
search_transactions Search contract transactions and modifications.
create_pipeline / update_pipeline / delete_pipeline Manage business development pipelines in the user's GovTribe account.
create_pursuit / update_pursuit / delete_pursuit Manage pursuits (specific opportunities being chased) within a pipeline.
create_stage / update_stage / delete_stage Manage stages within a pipeline.
create_task / update_task / delete_task Manage tasks attached to pursuits or pipelines.
create_saved_search / update_saved_search / delete_saved_search Persist custom searches for reuse and alerting.
bls_occupational_wage_data Return Bureau of Labor Statistics occupational wage data.
labor_ceiling_rate_benchmarks Provide labor ceiling rate benchmarks for proposal pricing.
show_chart / show_geo_map / show_stats Render visualizations from query results (charts, maps, stat displays).
add_to_vector_store / search_vector_store Index and retrieve user-provided documents in a private vector store.
show_document Render a referenced government file or document.
govtribe_documentation Query GovTribe's own product and API documentation.
Setup Guide

GovTribe MCP is a remote, provider-hosted server. There is nothing to install locally.

Prerequisites

  • A GovTribe account (trial or paid). New trials include 100 free MCP credits.
  • MCP enabled on the account and an API key generated at https://govtribe.com/account-mcp.

Option 1: Claude (consumer app)

  1. In Claude, open the chat input and click the + button, then choose Connectors then Add Connector.
  2. Search for "GovTribe" and select the GovTribe connector.
  3. Click Add to Your Team and complete the GovTribe OAuth/authorization flow.
  4. GovTribe will appear in your active connectors and is ready to use.

Option 2: ChatGPT / Microsoft 365 Copilot

Use the in-product connector directory and search for GovTribe, then authorize with your GovTribe account. Detailed instructions live at https://docs.govtribe.com/user-guide/integrations/govtribe-mcp.

Option 3: Anthropic API (developer)

Reference the remote MCP server directly from the Anthropic Messages API:

{
  "mcp_servers": [
    {
      "type": "url",
      "url": "https://govtribe.com/mcp",
      "name": "govtribe-mcp",
      "authorization_token": "$GOVTRIBE_API_KEY"
    }
  ],
  "tools": [
    { "type": "mcp_toolset", "mcp_server_name": "govtribe-mcp" }
  ]
}

Required request headers when calling the Anthropic API:

  • X-API-Key: $ANTHROPIC_API_KEY
  • anthropic-version: 2023-06-01
  • anthropic-beta: mcp-client-2025-11-20

Generate $GOVTRIBE_API_KEY at https://govtribe.com/account-mcp.

Use Cases
  • Generate a daily list of federal contract opportunities matching a vendor's NAICS codes, agencies of interest, and set-aside type, then add qualified ones as pursuits in a pipeline.
  • Build vendor competitive profiles by pulling award history, IDV holdings, and recent contract vehicles, then summarize alongside Defense One and Washington Technology coverage.
  • Run capture-team workflows from chat: create a pursuit, attach tasks with due dates, and move stages as gates are passed.
  • Forecast and pipeline analysis: query federal forecasts by agency and fiscal year, visualize spend with show_chart or show_geo_map, and benchmark proposal labor rates against BLS data.
  • State and local market entry research: search SLED opportunities, contracts, and vehicles in target jurisdictions and enrich with vendor and contact lookups.
Example Prompts
  • "Find all federal contract opportunities posted in the last 14 days under NAICS 541512 with a small business set-aside, and add the top 10 to my Q3 Pipeline as pursuits."
  • "Pull Leidos' federal contract awards over $50M in FY2025, list their top customer agencies, and summarize related Defense One coverage."
  • "Forecast IT modernization spend at the Department of the Navy for FY2026 and chart it by sub-organization."
  • "Search GovTribe contacts at the GSA who work on cloud and OneGov programs and create tasks to reach out to each one this week."
  • "Benchmark labor ceiling rates for a senior cybersecurity engineer in the DC metro for a cost-plus contract."
Pros
  • Official, vendor-maintained MCP server with direct access to GovTribe's proprietary GovCon dataset and GovExec journalism, not a community scrape.
  • Broad tool surface: read-only search across opportunities, awards, IDVs, vehicles, forecasts, vendors, contacts, and grants, plus write tools for pipelines, pursuits, stages, tasks, and saved searches.
  • Remote Streamable HTTP server, so no local install. Works with Claude, ChatGPT, Microsoft 365 Copilot, and the Anthropic API.
  • Built-in vector store and document tools let agents ground answers in user-supplied files alongside GovTribe data.
Limitations
  • Paid only. Requires a GovTribe account and consumes credits per call; new users get just 100 trial credits.
  • The full tool schema and parameter contracts are not openly published; integrators have to rely on GovTribe's user-guide documentation and in-product schema discovery.
  • Scope is U.S. government contracting only. Not useful for commercial CRM, international procurement, or non-GovCon workflows.
Alternatives
  • USAspending.gov and SAM.gov public APIs (free, raw federal spending and opportunity data, but no MCP wrapper and no SLED or forecasts).
  • Highergov and GovWin IQ (competing GovCon intelligence platforms; check vendor for current MCP availability).
  • Community SAM.gov MCP servers on GitHub for opportunity search without a paid intelligence subscription.