Skip to main content
Glama

govbid-mcp-server

Server Details

U.S. federal contract opportunities from SAM.gov. Daily updates. Public Domain.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsB

Average 3.6/5 across 3 of 3 tools scored. Lowest: 2.7/5.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: get_api_info provides API metadata, search_opportunities finds opportunities, and get_opportunity_detail returns a specific opportunity's SAM.gov URL. There is no meaningful overlap between the tools.

Naming Consistency5/5

The names follow a consistent verb_noun pattern: get_api_info, get_opportunity_detail, and search_opportunities. Directionality and style are uniform across the set.

Tool Count5/5

Three tools is appropriate for a focused contract-opportunity search server. Each tool serves a distinct step in the workflow and none feel redundant.

Completeness4/5

The core read-only workflow of searching opportunities and retrieving a specific opportunity's SAM.gov link is covered. The only minor gap is that get_opportunity_detail returns a URL rather than the full opportunity details, which may leave agents needing to follow the link externally.

Available Tools

3 tools
get_api_infoAInspect

Get metadata about the GovBid Global API. Call this first.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses that the tool is informational ('Get metadata') and implies safe initialization behavior through 'Call this first,' but it does not describe the response format, error cases, or whether any setup is required. This is adequate for a trivial no-parameter discovery call, but still leaves some behavior unspecified.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences, each earning its place: the first states the purpose, the second states the intended invocation order. There is no filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter API-info tool, the description is nearly complete: it names the exact resource, the kind of data (metadata), and the recommended temporal placement ('first'). A slightly richer description of what subset of metadata is returned would make it fully complete, but this is enough for an agent to select and call it.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters and the schema already covers this with 100% coverage. The description adds no parameter details, but none are needed; the baseline of 4 is appropriate because there are no parameters to explain.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Get') and a clear resource ('metadata about the GovBid Global API'), and distinguishes the tool from sibling tools that deal with opportunities. It is immediately obvious what this tool is for and that it is not for retrieving opportunity data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

'Call this first' is explicit sequencing guidance that tells the agent this is the entry point before using the sibling tools. It does not mention alternatives or exclusions, but for a metadata/discovery tool with zero parameters, this is clear and practical usage direction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_opportunity_detailAInspect

Get the direct SAM.gov URL for a specific contract opportunity.

ParametersJSON Schema
NameRequiredDescriptionDefault
notice_idYes
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

There are no annotations, so the description carries the behavioral burden. 'Get' and 'direct URL' are enough to convey a read-like lookup, but the description does not clarify error behavior, whether a missing notice_id produces anything, or whether the tool simply constructs the URL without contacting SAM.gov.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, front-loaded sentence with no wasted words. It states the core operation and the returned artifact immediately.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a one-parameter, read-oriented tool, the description covers the essential task and return value sufficiently. It lacks edge-case details, but the simplicity of the operation and clear identification of notice_id make it adequate for correct tool selection and invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The only parameter, notice_id, has no schema description, so the description's mention of 'a specific contract opportunity' adds relevant meaning. Still, it could be richer by explaining where the notice_id comes from or giving an example, since schema coverage is zero.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Get') and resource ('direct SAM.gov URL for a specific contract opportunity'), clearly identifying the tool's function. It distinguishes itself from search_opportunities by focusing on a single, specific contract and returning a direct URL rather than a list of opportunities.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use the tool: when you need the direct SAM.gov URL for a particular opportunity identified by notice_id. However, it does not explicitly contrast with siblings or state when not to use it, leaving some guidance to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_opportunitiesCInspect

Search U.S. federal government contract opportunities from SAM.gov.

ParametersJSON Schema
NameRequiredDescriptionDefault
daysNo
limitNo
api_keyYes
departmentNo
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description has the full burden of behavioral disclosure, but it only restates the tool's purpose. It does not mention the need for a valid API key, whether the operation is read-only, or whether rate limits, pagination, or external SAM.gov behaviors apply.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is one short sentence with no filler, and the main action is front-loaded. It is concise and structured well, though it trades completeness for brevity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with four parameters, no annotations, no parameter descriptions, and no output schema, the description provides only the broad domain and leaves out how inputs are used and what a response looks like. It is skeletal for the complexity present.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not explain any of the four parameters. The agent must infer the meaning of api_key, days, limit, and department from parameter names alone, with no author-provided semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb (Search), a resource (U.S. federal government contract opportunities), and a source (SAM.gov), so an agent knows this is a search/find operation. It does not explicitly distinguish itself from sibling get_opportunity_detail, though the names make that differentiation mostly inferable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool instead of get_opportunity_detail or get_api_info. No exclusions, alternatives, or conditional use cases are mentioned, so the agent must rely on inference from sibling names.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    Search and analyze U.S. federal government contracts and opportunities from SAM.gov. Tools for keyword search, contract details, competitive analysis, and capability statement drafting — built for AI agents via x402 USDC micropayments.
    3
    1
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Federal procurement intelligence toolkit that searches SAM.gov contract opportunities, analyzes agency spending patterns, tracks competitor wins, and monitors small business set-aside programs (8a, HUBZone, SDVOSB, WOSB). 4 tools using SAM.gov and USASpending.gov data.
    2
  • A
    license
    Not graded
    quality
    C
    maintenance
    SAM.gov MCP server providing federal contract opportunities and entity registration data, enabling AI agents to query U.S. government procurement information.
    19
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources