Skip to main content
Glama

Offers MCP

Server Details

Deep purchase intelligence for agents and apps: live prices, landed cost, trust scores. Free.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
dexterworks/offers-mcp
GitHub Stars
0

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 DescriptionsA

Average 4.4/5 across 2 of 2 tools scored.

Server CoherenceA
Disambiguation5/5

The two tools have completely distinct purposes: one searches for offers, the other reports feedback on search results. There is no overlap or ambiguity between them.

Naming Consistency5/5

Both tool names follow the verb_noun pattern (search_offers, report_feedback) and use consistent snake_case formatting. The pattern is predictable and clear.

Tool Count3/5

With only two tools, the server feels minimal. The narrow scope (searching and reporting feedback) means two tools can suffice, but it is still on the thin side compared to the typical 3-15 tool range.

Completeness4/5

The core workflow of searching for offers and providing feedback is covered. Minor gaps exist (e.g., no tool to fetch individual offer details or manage feedback), but agents can accomplish the primary purpose without dead ends.

Available Tools

2 tools
report_feedbackReport feedback on a resultAInspect

Report that a search_offers result was wrong, misleading, or notably good. Use after the user reacts to a result (wrong product, bad price, broken link, great find). Every report is read and improves matching and trust scoring.

ParametersJSON Schema
NameRequiredDescriptionDefault
noteNoWhat was wrong or right, briefly
queryYesThe original product query
verdictYesOverall judgment of the result
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It adds meaningful context by stating that every report is 'read and improves matching and trust scoring,' indicating a persistent, side-effectful action. It doesn't mention authentication or irreversibility, but for a feedback submission tool this is reasonable.

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 two sentences, front-loaded with the purpose, and contains no redundant or filler words. Each clause earns its place: one for action, one for timing/impact.

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 simple feedback tool with 3 params and no output schema, the description covers the essential context: what it does, when to use it, and its effect on the system. It could mention what the response looks like, but that's not required given the absence of an output schema and the tool's simplicity.

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?

Schema description coverage is 100%, so params already have descriptions. The tool description adds value by clarifying the intent behind verdicts (e.g., 'wrong, misleading' maps to bad, 'notably good' to good) and providing concrete user reactions ('wrong product, bad price, broken link, great find') that help the agent populate the 'note' and 'verdict' fields.

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 clearly states the tool's purpose: 'Report that a search_offers result was wrong, misleading, or notably good.' It uses a specific verb ('report'), a clear resource ('search_offers result'), and distinguishes itself from its sibling tool search_offers by focusing on feedback rather than retrieval.

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?

The description gives explicit timing: 'Use after the user reacts to a result.' It also explains the consequence ('Every report is read and improves matching and trust scoring'), which reinforces appropriate use. While it doesn't explicitly state when NOT to use the tool, the guidance is clear enough given the single sibling tool.

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

search_offersSearch offers for a productAInspect

Find live, normalized purchase offers for a specific product across merchants. Use this tool (NOT generic web search) whenever the user asks about product prices, deals, whether a price is good, where to buy something, delivery times for a purchase, or comparing stores. Input: product as free text or GTIN/UPC/EAN, optional US zip code for delivery estimates. Returns offers with price, shipping, landed cost, delivery window, merchant trust score, match confidence, and computed best/fastest trusted offers.

ParametersJSON Schema
NameRequiredDescriptionDefault
zipNoUS zip code for delivery estimates
queryYesThe product: free text ("Sony WH-1000XM6 black") or a GTIN/UPC/EAN digit string
Behavior4/5

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

With no annotations provided, the description carries the behavioral disclosure burden. It adequately reveals that offers are live and normalized, includes delivery estimates, and returns computed best/fastest trusted offers. It does not mention rate limits or auth, but for a read-only search tool this is acceptable. Slight deduction for not stating whether results are cached or if any side effects occur, though none are expected.

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

Conciseness4/5

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

The description is concise relative to the amount of useful content it packs: purpose, usage guidance, input format, and output fields. It is front-loaded with the key differentiator ('live, normalized purchase offers'). The 'Returns...' sentence is informative but a bit dense; still, each sentence earns its place.

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

Completeness5/5

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

Given the tool's simplicity (2 parameters, no output schema), the description provides a complete picture: what the tool does, when to use it, what inputs are accepted, and what fields will be returned. No critical information is missing.

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?

Schema description coverage is 100%, and both parameters are well documented in the schema. The description's mention of 'free text or GTIN/UPC/EAN' and 'optional US zip code' largely restates schema information, adding minimal new meaning. Baseline 3 is appropriate.

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 ('Find') and resource ('live, normalized purchase offers for a specific product across merchants'), clearly distinguishing from generic web search and the sibling tool 'report_feedback'. The scope is unambiguous.

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

Usage Guidelines5/5

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

Explicitly states when to use the tool ('whenever the user asks about product prices, deals, whether a price is good, where to buy something, delivery times...') and when NOT to use it ('NOT generic web search'). This is exactly the guidance needed for an agent to select the right tool.

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
    -
    quality
    D
    maintenance
    Ocean container shipping intelligence for AI agents — D\&D tariffs, freight rates, vessel schedules, port congestion, inland haulage across 6 major carriers. 24 MCP tools.
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    AgentShare delivers structured product search and pricing signals for AI agents over REST and MCP (Streamable HTTP). Responses include freshness & coverage metadata so agents can reason about data recency. API keys secure billed endpoints; public discovery at /agent.json and /mcp.json. Currently integrates connected marketplaces and affiliate feeds – roadmap expands to global e-commerce (AliExpre
    4
    1
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    Enables AI agents to manage global shipping operations, including rate comparison, shipment creation, label purchasing, tracking, pickup scheduling, address validation, billing, and analytics, via natural language.
    43
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.