ironscout
Server Details
Read-only ammo pricing: offer search, caliber market snapshots, retailer directory. Descriptive.
- 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.
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.
Tool Definition Quality
Average 4.2/5 across 5 of 5 tools scored. Lowest: 3.6/5.
Each tool targets a distinct aspect of the ammunition market: market snapshot, product details, caliber list, retailer list, and offer search. There is no overlap in functionality, making it easy for an agent to select the correct tool.
All tool names follow a consistent 'verb_noun' pattern using snake_case (e.g., get_market_snapshot, list_calibers, search_offers), which is predictable and clear.
With 5 tools, the server is well-scoped for its domain of ammunition market intelligence. The number is sufficient to cover core queries without being overwhelming or insufficient.
The tool set covers essential operations: listing entities (calibers, retailers), fetching details (product, market snapshot), and searching offers. As a read-only data source, it provides a complete surface for querying market data without obvious gaps.
Available Tools
5 toolsget_market_snapshotGet caliber market snapshotARead-onlyInspect
Caliber-level price distribution (median, p25, p75, min, max) over a rolling window. Purely descriptive statistics with methodology and sample counts; never a forecast or recommendation. Returns error_v1 NOT_FOUND when no snapshot exists for the caliber/window.
| Name | Required | Description | Default |
|---|---|---|---|
| caliber | Yes | Canonical caliber, e.g. "9mm". | |
| windowDays | No | Rolling window in days. 7 or 30; defaults to 30. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint and openWorldHint, which are consistent with the tool's read-only nature. The description adds valuable behavioral details: it is purely descriptive (no forecast), returns NOT_FOUND when no snapshot exists, and includes methodology and sample counts. This fully informs the agent of the tool's behavior beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences. The first sentence defines the purpose and output; the second clarifies limitations and error behavior. No extraneous information, perfectly front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has only 2 parameters, no output schema, and rich annotations, the description covers all necessary aspects: what data is returned, constraints on windowDays, error behavior, and non-forecast nature. It is complete for an agent to correctly invoke the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and already describes both parameters clearly (caliber with example, windowDays with allowed values and default). The description adds the context of a 'rolling window' but does not repeat schema details, which is appropriate. The description adds value by explaining the overall window concept.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description specifies a clear verb ('get') and resource ('caliber market snapshot'), and details the output: price distribution statistics (median, p25, p75, min, max) over a rolling window. It clearly distinguishes from sibling tools by focusing on market-level descriptive statistics.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states that the tool provides only descriptive statistics, never a forecast or recommendation, guiding when to use it. It also mentions the error condition for missing snapshots. However, it does not explicitly name alternative tools for other use cases, though siblings are listed separately.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_productGet product detailARead-onlyInspect
Fetch a single canonical product by its canonicalProductId, with current per-retailer offers. Descriptive only. Returns an error_v1 body with NOT_FOUND if the id is unknown.
| Name | Required | Description | Default |
|---|---|---|---|
| canonicalProductId | Yes | Canonical product id (CUID) from search results. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond readOnlyHint and openWorldHint annotations, the description discloses error handling (NOT_FOUND) and return content (offers), adding useful behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, zero waste, front-loaded with key information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple single-parameter read tool, it covers purpose, return format, and error cases; could be more explicit about offer details but adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a good parameter description; the tool description adds no new parameter semantics beyond restating the ID.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it fetches a single product by ID with offers, but does not differentiate from siblings like search_offers or get_market_snapshot.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives; no exclusions or context provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_calibersList canonical calibersARead-onlyInspect
Enumerate every canonical caliber IronScout recognizes, each flagged with whether a current market snapshot exists and its sample count. Calibers without a snapshot are still listed (with hasSnapshot: false).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark it as read-only and open-world. The description adds that calibers without snapshots are still included with hasSnapshot: false, providing useful behavioral details beyond annotations. No contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise: two sentences with no unnecessary words. It front-loads the main action and output details efficiently.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no parameters and simple purpose, the description is largely complete. It explains the output fields and behavior for missing snapshots. It could mention ordering or pagination, but not essential.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, so the description naturally doesn't add parameter info. Following the baseline rule for 0 parameters, a score of 4 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the verb 'Enumerate' and the resource 'every canonical caliber IronScout recognizes'. It also explains the output includes whether a snapshot exists and sample count, distinguishing it from sibling tools that deal with specific snapshots or products.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The usage context is implied: it's for listing all calibers. However, there is no explicit guidance on when to use this tool versus alternatives like get_market_snapshot, nor when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_retailersList eligible retailersARead-onlyInspect
List currently eligible/visible retailers. Ineligible retailers are omitted entirely (fail-closed, ADR-005). Descriptive directory only.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations (readOnlyHint, openWorldHint), description adds key behavioral detail: ineligible retailers are omitted entirely (fail-closed). This is not evident from annotations alone.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with purpose, no wasted words. Each sentence contributes meaningfully.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless list tool without output schema, the description fully covers purpose, eligibility behavior, and nature (descriptive directory). Complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters (baseline 4). Description adds value by explaining the tool is a directory without needing params.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it lists eligible/visible retailers. Specific verb-resource combination distinguishes from siblings like list_calibers. Mentions fail-closed behavior ADR-005.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies usage: descriptive directory only, but does not explicitly state when not to use or mention alternatives like search_offers for more advanced filtering.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_offersSearch ammunition offersARead-onlyInspect
Search canonical ammunition products and their current per-retailer offers. Results are descriptive only — prices, availability, $/round, observation time, and provenance, with no verdicts, scores, or recommendations. Use each offer's outUrl for outbound links (do not rewrite it). sort is a mechanical ordering, never a judgement.
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Free-text query over product name/brand/description. | |
| case | No | Case material, e.g. "Brass", "Steel". | |
| page | No | ||
| sort | No | Mechanical ordering only. Defaults to pricePerRoundAsc. | |
| brand | No | ||
| grain | No | Bullet weight in grains. | |
| caliber | No | Canonical caliber, e.g. "9mm" or ".223/5.56". | |
| inStock | No | When true, only products with in-stock offers are returned. | |
| pageSize | No | ||
| roundCountMax | No | ||
| roundCountMin | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and openWorldHint. The description adds value by elaborating on the read-only nature (descriptive only, no scores) and warns against rewriting outUrl, with no contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two well-structured sentences: first covers purpose and result nature, second provides key usage instructions. Every sentence adds value with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the 11 parameters, no required fields, and no output schema, the description covers the return format (prices, availability, etc.) and core behavior. It could detail pagination but is sufficient for agent invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 55% (moderate). The description reinforces the sort parameter's mechanical nature but adds no new information for other parameters beyond the schema. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches canonical ammunition products and their per-retailer offers, with a specific verb and resource. It distinguishes itself from sibling tools like get_product (single product) and list_retailers (retailers only).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains results are descriptive only (no verdicts) and provides specific usage instructions for outUrl and sort. While it doesn't explicitly state when not to use this tool, the sibling context and clear scope make it effective.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!