Misfit Machine Store
Server Details
UCP-compatible machine catalog for paid Misfit agent APIs and MCP services.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
3 toolsget_productGet Misfit machine productARead-onlyIdempotentInspect
Read-only detail retrieval for exactly one selected product. Call after search_catalog or lookup_catalog when full current price, availability, machine endpoint, and existing checkout-handoff metadata are needed. This does not create checkout, cart, order, payment, credential, or merchant state.
| Name | Required | Description | Default |
|---|---|---|---|
| meta | Yes | UCP caller metadata for capability negotiation only. This server is read-only. | |
| catalog | Yes | Single-product detail. Minimal valid shape: {id:"product-id"}. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ucp | Yes | |
| product | No | Current machine-consumable Misfit catalog product. Checkout URLs, when present, are handoff metadata only and do not authorize purchase. |
| messages | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false; description adds the specific non-actions (does not create checkout, cart, order, etc.) and frames it as 'read-only detail retrieval', reinforcing the idempotentHint. It doesn't mention rate limits or auth beyond the UCP profile mention which is in schema, but adds enough context 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 a single, front-loaded paragraph (approximately 60 words) that states the purpose, the when-to-use, and the boundary of what it does not do. Every sentence adds value and there is no redundancy with the schema.
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 there is an output schema and the annotations disclose read-only/idempotent behavior, the description covers the essential prerequisites (requires 'meta.ucp-agent.profile', 'catalog.id') implicitly via schema, and explicitly states the side-effect-free guarantee. It doesn't explain error conditions or rate limits, but those are not required for high completeness. The missing negative guidance on when NOT to call it (e.g., for multi-product or mutation) is implied by 'exactly one selected product' and the non-actions.
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?
The schema has thorough parameter descriptions (100% coverage), including the purpose of each field and clarifications like 'no purchase occurs' and 'never authorizes billing.' The tool description adds little beyond pointing to the schema's 'exactly one selected product' requirement and id source. Given the high schema coverage, the description doesn't need to add much; baseline of 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?
Description states a specific verb ('read-only detail retrieval') and resource ('exactly one selected product'), and explicitly distinguishes from sibling tools by naming them and the sequencing ('Call after search_catalog or lookup_catalog'). It also enumerates what it does NOT do (create cart, order, etc.), making its scope unmistakable.
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?
Provides explicit when to use: after search_catalog or lookup_catalog, when full current price, availability, machine endpoint, and checkout-handoff metadata are needed. Also specifies a clear when-not by listing side-effects it does not produce (create checkout, cart, order, payment, credential, merchant state).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lookup_catalogLookup Misfit machine productsARead-onlyIdempotentInspect
Read-only identifier lookup. Call this when you already have one or more product, variant, SKU, or handle IDs and need current price, availability, or machine endpoint data. No purchase or mutation occurs. Use search_catalog if IDs are unknown; use get_product for full detail on one selected item.
| Name | Required | Description | Default |
|---|---|---|---|
| meta | Yes | UCP caller metadata for capability negotiation only. This server is read-only. | |
| catalog | Yes | Identifier lookup. Minimal valid shape: {ids:["known-id"]}. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ucp | Yes | |
| messages | No | |
| products | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint, idempotentHint, and destructiveHint, and the description reinforces these with 'Read-only' and 'No purchase or mutation occurs,' which adds a small amount of context beyond the annotations. However, it does not mention potential errors, rate limits, or other side effects that might affect caller behavior.
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 long, starts with the core purpose ('Read-only identifier lookup'), and packs all necessary guidance without fluff. It front-loads the action and resource, then provides usage and alternatives in a compact, scannable manner.
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 identifier lookup tool, the description provides sufficient context: it explains what data is returned (price, availability, machine endpoint data), when to use it, and how it differs from siblings. It does not describe the output schema, but the presence of an output schema (as indicated in context) means that is not required. The description is slightly generic about optional parameters but still gives a complete picture for an agent.
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?
The input schema provides descriptions for all parameters (ids, context, filters, signals, attribution), achieving 100% coverage. The tool description does not add much beyond what the schema states; it repeats the types of identifiers and mentions the return intent, but does not clarify the meaning or purpose of the optional parameters. Since coverage is high, a baseline of 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 verb ('lookup') and resource ('catalog'), and specifies the exact use case: retrieving current price, availability, or machine endpoint data for known product, variant, SKU, or handle IDs. It also names sibling tools directly, distinguishing itself from search_catalog (unknown IDs) and get_product (single item full detail).
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 tells when to use this tool: 'Call this when you already have one or more product, variant, SKU, or handle IDs and need current price, availability, or machine endpoint data.' It also gives clear alternative instructions: 'Use search_catalog if IDs are unknown; use get_product for full detail on one selected item.' This leaves no ambiguity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_catalogSearch Misfit machine productsARead-onlyIdempotentInspect
Read-only product discovery. Call this first when you do not know a product ID. Returns matching machine-consumable products with current price, availability, and machine endpoint metadata. No cart, checkout, order, payment, credential, or merchant mutation occurs. Use lookup_catalog when IDs are known; use get_product after selecting one product.
| Name | Required | Description | Default |
|---|---|---|---|
| meta | Yes | UCP caller metadata for capability negotiation only. This server is read-only. | |
| catalog | Yes | Search request. Minimal valid shape: {query:"change monitoring"}. Query may be omitted for default discovery. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ucp | Yes | |
| messages | No | |
| products | Yes | |
| pagination | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Explicitly states it is read-only, returns matching products with price, availability, and endpoint metadata; clarifies no cart, checkout, order, payment, credential, or merchant mutation occurs. Annotations (readOnly=true, idempotent=true, destructive=false) align with the description, so no contradiction. This is a model of behavioral transparency.
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 but informative, using clear bullet-style clauses. The schema is well-structured with nested objects and clear descriptions. The additional text explaining when to call and what does not happen is efficient and not verbose.
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?
The description provides full context: it states read-only semantics, what the tool returns, what it doesn't do, and how it fits into a workflow (use lookup_catalog when IDs are known, get_product after selecting). It covers usage scenarios shortages (like knowing product ID) and highlights non-mutations. The schema explains required fields and optional fields. This is highly 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?
The schema provides detailed descriptions for each parameter: meta explains it's for capability negotiation and is read-only; catalog describes its role as a search request with query, context, filters, signals, and pagination. The 'query' parameter has examples and pagination has min/max and descriptions. The schema description coverage is 100% per the metadata, and the description provides additional examples and clarifies optional fields. Parameters are well-documented.
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?
Title and description clearly state the tool's purpose: searching Misfit machine products. It explicitly mentions it is read-only product discovery and says to call it first when the product ID is unknown, with clear next steps (lookup_catalog, get_product).
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?
Provides strong usage context: call this when product ID is unknown, use lookup_catalog when IDs are known, and use get_product after selecting a product. Also explains the purpose of the tool in the discovery flow, making usage guidelines excellent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
- Changed
get_product1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "additionalProperties": true, + "description": "UCP single-product detail response.", + "properties": { + "messages": { + "type": "array" + }, + "product": { + "additionalProperties": true, + "description": "Current machine-consumable Misfit catalog product. Checkout URLs, when present, are handoff metadata only and do not authorize purchase.", + "properties": { + "categories": { + "type": "array" + }, + "description": { + "type": "object" + }, + "handle": { + "type": "string" + }, + "id": { + "type": "string" + }, + "metadata": { + "type": "object" + }, + "price_range": { + "type": "object" + }, + "title": { + "type": "string" + }, + "url": { + "type": "string" + }, + "variants": { + "type": "array" + } + }, + "required": [ + "id", + "title" + ], + "type": "object" + }, + "ucp": { + "additionalProperties": true, + "properties": { + "capabilities": { + "type": "object" + }, + "status": { + "type": "string" + }, + "version": { + "type": "string" + } + }, + "required": [ + "version", + "status" + ], + "type": "object" + } + }, + "required": [ + "ucp" + ], + "type": "object" +}
- Changed
lookup_catalog1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "additionalProperties": true, + "description": "UCP identifier lookup response. Missing identifiers may appear in messages.", + "properties": { + "messages": { + "type": "array" + }, + "products": { + "items": { + "additionalProperties": true, + "description": "Current machine-consumable Misfit catalog product. Checkout URLs, when present, are handoff metadata only and do not authorize purchase.", + "properties": { + "categories": { + "type": "array" + }, + "description": { + "type": "object" + }, + "handle": { + "type": "string" + }, + "id": { + "type": "string" + }, + "metadata": { + "type": "object" + }, + "price_range": { + "type": "object" + }, + "title": { + "type": "string" + }, + "url": { + "type": "string" + }, + "variants": { + "type": "array" + } + }, + "required": [ + "id", + "title" + ], + "type": "object" + }, + "type": "array" + }, + "ucp": { + "additionalProperties": true, + "properties": { + "capabilities": { + "type": "object" + }, + "status": { + "type": "string" + }, + "version": { + "type": "string" + } + }, + "required": [ + "version", + "status" + ], + "type": "object" + } + }, + "required": [ + "ucp", + "products" + ], + "type": "object" +}
- Changed
search_catalog3 fields changed- added
Input schema / properties / catalog / properties / pagination / additionalPropertiesAdded value: +true - added
Input schema / properties / catalog / properties / pagination / propertiesAdded value: +{ + "cursor": { + "description": "Opaque cursor returned by a prior search response.", + "type": "string" + }, + "limit": { + "description": "Maximum products to return; backend default is 10.", + "maximum": 50, + "minimum": 1, + "type": "integer" + } +} - changed
Output schema / (root)Previous value: -nullNew value: +{ + "additionalProperties": true, + "description": "UCP catalog search response. Products are read-only discovery results.", + "properties": { + "messages": { + "type": "array" + }, + "pagination": { + "additionalProperties": true, + "properties": { + "cursor": { + "type": "string" + }, + "has_next_page": { + "type": "boolean" + }, + "total_count": { + "type": "integer" + } + }, + "type": "object" + }, + "products": { + "items": { + "additionalProperties": true, + "description": "Current machine-consumable Misfit catalog product. Checkout URLs, when present, are handoff metadata only and do not authorize purchase.", + "properties": { + "categories": { + "type": "array" + }, + "description": { + "type": "object" + }, + "handle": { + "type": "string" + }, + "id": { + "type": "string" + }, + "metadata": { + "type": "object" + }, + "price_range": { + "type": "object" + }, + "title": { + "type": "string" + }, + "url": { + "type": "string" + }, + "variants": { + "type": "array" + } + }, + "required": [ + "id", + "title" + ], + "type": "object" + }, + "type": "array" + }, + "ucp": { + "additionalProperties": true, + "properties": { + "capabilities": { + "type": "object" + }, + "status": { + "type": "string" + }, + "version": { + "type": "string" + } + }, + "required": [ + "version", + "status" + ], + "type": "object" + } + }, + "required": [ + "ucp", + "products" + ], + "type": "object" +}
3 tool updates
- Changed
get_product10 fields changed- changed
Input schema / properties / catalog / descriptionPrevious value: -"Single-product detail request."New value: +"Single-product detail. Minimal valid shape: {id:\"product-id\"}." - changed
Input schema / properties / catalog / properties / attribution / descriptionPrevious value: -"Optional source/channel attribution metadata for discovery analytics."New value: +"Optional discovery attribution. Suggested fields: source (registry/client/platform), channel, campaign, referrer. Attribution is analytics metadata only and never authorizes billing." - changed
Input schema / properties / catalog / properties / context / descriptionPrevious value: -"Optional UCP caller context; passed through read-only."New value: +"Optional UCP caller context." - changed
Input schema / properties / catalog / properties / id / descriptionPrevious value: -"Exact product identifier returned by search_catalog or lookup_catalog."New value: +"Exact product ID returned by search_catalog or lookup_catalog." - changed
Input schema / properties / catalog / properties / preferences / descriptionPrevious value: -"Optional caller preferences relevant to product presentation; no purchase is performed."New value: +"Optional presentation preferences; no purchase occurs." - changed
Input schema / properties / catalog / properties / selected / descriptionPrevious value: -"Optional selected variant/options state from a prior catalog response; passed through to the backend."New value: +"Optional selected variant/options state from a prior catalog response." - changed
Input schema / properties / catalog / properties / signals / descriptionPrevious value: -"Optional machine-selection signals; passed through read-only."New value: +"Optional machine-selection signals." - changed
Input schema / properties / meta / descriptionPrevious value: -"UCP caller metadata used only for capability negotiation; this read-only server does not mutate carts, orders, payments, credentials, or merchant data."New value: +"UCP caller metadata for capability negotiation only. This server is read-only." - changed
Input schema / properties / meta / properties / ucp-agent / descriptionPrevious value: -"Calling UCP agent identity/profile metadata."New value: +"Calling UCP agent metadata." - changed
Input schema / properties / meta / properties / ucp-agent / properties / profile / descriptionPrevious value: -"Absolute URI of the caller's UCP profile document. Required on every catalog tool call."New value: +"Absolute URI of the caller's UCP profile. Required on every call."
- Changed
lookup_catalog10 fields changed- changed
Input schema / properties / catalog / descriptionPrevious value: -"Identifier-based catalog lookup request."New value: +"Identifier lookup. Minimal valid shape: {ids:[\"known-id\"]}." - changed
Input schema / properties / catalog / properties / attribution / descriptionPrevious value: -"Optional source/channel attribution metadata for discovery analytics."New value: +"Optional discovery attribution. Suggested fields: source (registry/client/platform), channel, campaign, referrer. Attribution is analytics metadata only and never authorizes billing." - changed
Input schema / properties / catalog / properties / context / descriptionPrevious value: -"Optional UCP caller context; passed through read-only."New value: +"Optional UCP caller context." - changed
Input schema / properties / catalog / properties / filters / descriptionPrevious value: -"Optional backend-supported filters applied to the lookup."New value: +"Optional backend-supported filters." - changed
Input schema / properties / catalog / properties / ids / descriptionPrevious value: -"One to 100 known catalog identifiers to resolve."New value: +"One to 100 known identifiers." - changed
Input schema / properties / catalog / properties / ids / items / descriptionPrevious value: -"Known product, variant, SKU, or handle identifier."New value: +"Exact product, variant, SKU, or handle identifier." - changed
Input schema / properties / catalog / properties / signals / descriptionPrevious value: -"Optional machine-selection signals; passed through read-only."New value: +"Optional machine-selection signals." - changed
Input schema / properties / meta / descriptionPrevious value: -"UCP caller metadata used only for capability negotiation; this read-only server does not mutate carts, orders, payments, credentials, or merchant data."New value: +"UCP caller metadata for capability negotiation only. This server is read-only." - changed
Input schema / properties / meta / properties / ucp-agent / descriptionPrevious value: -"Calling UCP agent identity/profile metadata."New value: +"Calling UCP agent metadata." - changed
Input schema / properties / meta / properties / ucp-agent / properties / profile / descriptionPrevious value: -"Absolute URI of the caller's UCP profile document. Required on every catalog tool call."New value: +"Absolute URI of the caller's UCP profile. Required on every call."
- Changed
search_catalog10 fields changed- changed
Input schema / properties / catalog / descriptionPrevious value: -"Catalog search request."New value: +"Search request. Minimal valid shape: {query:\"change monitoring\"}. Query may be omitted for default discovery." - changed
Input schema / properties / catalog / properties / attribution / descriptionPrevious value: -"Optional source/channel attribution metadata used for discovery analytics, not billing authorization."New value: +"Optional discovery attribution. Suggested fields: source (registry/client/platform), channel, campaign, referrer. Attribution is analytics metadata only and never authorizes billing." - changed
Input schema / properties / catalog / properties / context / descriptionPrevious value: -"Optional UCP context supplied by the caller; passed through to the catalog service."New value: +"Optional UCP caller context." - changed
Input schema / properties / catalog / properties / filters / descriptionPrevious value: -"Optional catalog filters supported by the UCP backend."New value: +"Optional backend-supported filters." - changed
Input schema / properties / catalog / properties / pagination / descriptionPrevious value: -"Optional pagination controls supported by the UCP backend."New value: +"Optional pagination controls." - changed
Input schema / properties / catalog / properties / query / descriptionPrevious value: -"Natural-language or keyword query such as 'A2A audit', 'change monitoring', or 'machine commerce'. Empty/omitted query may return the default discoverable catalog."New value: +"Natural-language or keyword query, e.g. 'A2A audit', 'change monitoring', or 'machine commerce'." - changed
Input schema / properties / catalog / properties / signals / descriptionPrevious value: -"Optional machine-selection signals supplied by the caller; passed through without side effects."New value: +"Optional machine-selection signals." - changed
Input schema / properties / meta / descriptionPrevious value: -"UCP caller metadata used only for capability negotiation; this read-only server does not mutate carts, orders, payments, credentials, or merchant data."New value: +"UCP caller metadata for capability negotiation only. This server is read-only." - changed
Input schema / properties / meta / properties / ucp-agent / descriptionPrevious value: -"Calling UCP agent identity/profile metadata."New value: +"Calling UCP agent metadata." - changed
Input schema / properties / meta / properties / ucp-agent / properties / profile / descriptionPrevious value: -"Absolute URI of the caller's UCP profile document. Required on every catalog tool call."New value: +"Absolute URI of the caller's UCP profile. Required on every call."
3 tool updates
- Changed
get_product11 fields changed- added
Input schema / properties / catalog / descriptionAdded value: +"Single-product detail request." - added
Input schema / properties / catalog / properties / attribution / descriptionAdded value: +"Optional source/channel attribution metadata for discovery analytics." - added
Input schema / properties / catalog / properties / context / descriptionAdded value: +"Optional UCP caller context; passed through read-only." - added
Input schema / properties / catalog / properties / filters / descriptionAdded value: +"Optional backend-supported filters." - added
Input schema / properties / catalog / properties / id / descriptionAdded value: +"Exact product identifier returned by search_catalog or lookup_catalog." - added
Input schema / properties / catalog / properties / preferences / descriptionAdded value: +"Optional caller preferences relevant to product presentation; no purchase is performed." - added
Input schema / properties / catalog / properties / selected / descriptionAdded value: +"Optional selected variant/options state from a prior catalog response; passed through to the backend." - added
Input schema / properties / catalog / properties / signals / descriptionAdded value: +"Optional machine-selection signals; passed through read-only." - added
Input schema / properties / meta / descriptionAdded value: +"UCP caller metadata used only for capability negotiation; this read-only server does not mutate carts, orders, payments, credentials, or merchant data." - added
Input schema / properties / meta / properties / ucp-agent / descriptionAdded value: +"Calling UCP agent identity/profile metadata." - added
Input schema / properties / meta / properties / ucp-agent / properties / profile / descriptionAdded value: +"Absolute URI of the caller's UCP profile document. Required on every catalog tool call."
- Changed
lookup_catalog10 fields changed- added
Input schema / properties / catalog / descriptionAdded value: +"Identifier-based catalog lookup request." - added
Input schema / properties / catalog / properties / attribution / descriptionAdded value: +"Optional source/channel attribution metadata for discovery analytics." - added
Input schema / properties / catalog / properties / context / descriptionAdded value: +"Optional UCP caller context; passed through read-only." - added
Input schema / properties / catalog / properties / filters / descriptionAdded value: +"Optional backend-supported filters applied to the lookup." - added
Input schema / properties / catalog / properties / ids / descriptionAdded value: +"One to 100 known catalog identifiers to resolve." - added
Input schema / properties / catalog / properties / ids / items / descriptionAdded value: +"Known product, variant, SKU, or handle identifier." - added
Input schema / properties / catalog / properties / signals / descriptionAdded value: +"Optional machine-selection signals; passed through read-only." - added
Input schema / properties / meta / descriptionAdded value: +"UCP caller metadata used only for capability negotiation; this read-only server does not mutate carts, orders, payments, credentials, or merchant data." - added
Input schema / properties / meta / properties / ucp-agent / descriptionAdded value: +"Calling UCP agent identity/profile metadata." - added
Input schema / properties / meta / properties / ucp-agent / properties / profile / descriptionAdded value: +"Absolute URI of the caller's UCP profile document. Required on every catalog tool call."
- Changed
search_catalog10 fields changed- added
Input schema / properties / catalog / descriptionAdded value: +"Catalog search request." - added
Input schema / properties / catalog / properties / attribution / descriptionAdded value: +"Optional source/channel attribution metadata used for discovery analytics, not billing authorization." - added
Input schema / properties / catalog / properties / context / descriptionAdded value: +"Optional UCP context supplied by the caller; passed through to the catalog service." - added
Input schema / properties / catalog / properties / filters / descriptionAdded value: +"Optional catalog filters supported by the UCP backend." - added
Input schema / properties / catalog / properties / pagination / descriptionAdded value: +"Optional pagination controls supported by the UCP backend." - added
Input schema / properties / catalog / properties / query / descriptionAdded value: +"Natural-language or keyword query such as 'A2A audit', 'change monitoring', or 'machine commerce'. Empty/omitted query may return the default discoverable catalog." - added
Input schema / properties / catalog / properties / signals / descriptionAdded value: +"Optional machine-selection signals supplied by the caller; passed through without side effects." - added
Input schema / properties / meta / descriptionAdded value: +"UCP caller metadata used only for capability negotiation; this read-only server does not mutate carts, orders, payments, credentials, or merchant data." - added
Input schema / properties / meta / properties / ucp-agent / descriptionAdded value: +"Calling UCP agent identity/profile metadata." - added
Input schema / properties / meta / properties / ucp-agent / properties / profile / descriptionAdded value: +"Absolute URI of the caller's UCP profile document. Required on every catalog tool call."
3 tool updates
- First observed
get_product - First observed
lookup_catalog - First observed
search_catalog
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
AgencyAI's public MCP for service discovery and AI-readiness assessment.
Hosted MCP memory and agent control plane for durable conversations, jobs, and operations.
Hosted MCP for Conductor Relay: a verifier-backed agent work exchange and cold marketplace.
Agent-native catalogue of Baseframe Labs dev tools and MCP servers.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenancePaid remote MCP for hosted MCP server providing structured receipts, usage logs, and audit-ready evidence for agent and CI workflows.-
- AlicenseCqualityAmaintenanceRead-only MCP server that exposes public TokenLab model catalog tools for agents to discover models, inspect request contracts, and compare pricing.31164MIT
- AlicenseNot gradedqualityBmaintenancePaid hosted MCP for agent-to-agent compute routing and brain-builder workflows. OAuth 2.1 + PKCE auth, Stripe prepaid USD credits, 29 tools (10 free, 19 metered). 25% of net revenue funds verified conservation via a public auditable ledger. SEP-1960 manifest and SEP-1649 server card published.1MIT
- AlicenseNot gradedqualityBmaintenanceA self-hosted MCP gateway and control plane that aggregates and manages MCP servers and tools, providing unified access, a web console, access control, invocation auditing, and integrated build/deploy workflows.Apache 2.0
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
The three tools have distinct use cases (discovery, known IDs, single full detail), but the verbose and overlapping descriptions may cause some confusion between lookup_catalog and get_product.
All tool names follow a consistent verb_noun pattern (search, lookup, get) with clear nouns, making them predictable and coherent.
With only three read-only catalog operations, the count is well-scoped for the server's stated purpose of product retrieval without mutation.
For a read-only catalog, the surface covers the essential operations: searching by unknown criteria, looking up by known IDs, and retrieving full details for a single product. No critical gaps are apparent.