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.
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.4/5 across 2 of 2 tools scored.
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.
Both tool names follow the verb_noun pattern (search_offers, report_feedback) and use consistent snake_case formatting. The pattern is predictable and clear.
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.
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 toolsreport_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.
| Name | Required | Description | Default |
|---|---|---|---|
| note | No | What was wrong or right, briefly | |
| query | Yes | The original product query | |
| verdict | Yes | Overall judgment of the result |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| zip | No | US zip code for delivery estimates | |
| query | Yes | The product: free text ("Sony WH-1000XM6 black") or a GTIN/UPC/EAN digit string |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
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!
Related MCP Servers
- Alicense-qualityDmaintenanceOcean 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
- AlicenseAqualityDmaintenanceEnables AI agents to create, compare, and track purchases with structured buying workflows, offer comparison, and merchant verification.5MIT
- AlicenseAqualityBmaintenanceAgentShare 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 (AliExpre41MIT

Easyship MCPofficial
Alicense-qualityDmaintenanceEnables 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.43MIT