HTTP 402 AI Tollbooth
Server Details
Free MCP troubleshooting-preview tools; purchases stay human-directed.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- RobotFleet-HQ/http-402-ai-tollbooth-public
- GitHub Stars
- 0
- Server Listing
- http-402-ai-tollbooth
Available Tools
4 toolsbuy_productARead-onlyIdempotentInspect
Return purchase directions only. Never creates an invoice, checkout, or payment.
| Name | Required | Description | Default |
|---|---|---|---|
| product | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is established. The description adds value by specifying the exact artifacts it will not create (invoice, checkout, payment), which is concrete context beyond the generic hints. No contradiction between description and 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?
Two sentences totalling 13 words, with the core purpose front-loaded in the first sentence. Every word earns its place; the second sentence is a precise exclusion rather than filler.
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 one-parameter read-only tool the core is covered, but with no output schema the phrase 'purchase directions' leaves the return format undisclosed (plain text steps, structured list, URL?). The expected format of the `product` parameter is likewise absent. Adequate but with clear gaps.
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 0%, and the description never mentions the sole required parameter `product`. The agent cannot tell whether to pass a product name, ID, or slug; maxLength/minLength provide no semantic help. The description fails to compensate for the coverage gap.
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?
States a specific verb and resource ('Return purchase directions only') with a boundary condition that disambiguates from the name's implication of an actual transaction ('Never creates an invoice, checkout, or payment'). The scope is unambiguous on its own, though it does not explicitly contrast with sibling tools.
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 — this tool is for when a user needs purchase directions — but no explicit when-to-use versus alternatives guidance is given. The negative guarantee ('Never creates an invoice, checkout, or payment') signals it is not for executing purchases, but no sibling is named as the alternative for that need.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_payment_methodsARead-onlyIdempotentInspect
Read public payment-method availability.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover the safety profile: readOnlyHint, idempotentHint, and destructiveHint are all provided. The description adds 'public' and 'availability', which usefully imply no authentication and possibly dynamic state, but it does not disclose return behavior or any operational characteristics beyond what annotations already establish. No contradiction exists.
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 sentence with no filler. Every word adds meaning: 'Read' signals the operation, 'public' signals access scope, and 'payment-method availability' signals the resource.
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 zero-parameter, read-only tool with rich annotations, the description is largely complete. The main gap is that there is no output schema and the description doesn't specify the return shape, but the tool name and 'availability' strongly imply a list of payment methods with availability status.
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 tool has zero parameters and the schema coverage is 100%, so the schema leaves nothing undocumented. The description doesn't need to explain parameter meaning; the baseline for a zero-parameter tool is met.
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 states a clear action ('Read') and a specific resource ('public payment-method availability'), which distinguishes it from siblings like buy_product, list_products, and preview_product. The resource is concrete enough for an agent to understand what the tool does without opening the schema.
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 no guidance on when to use this tool versus the sibling tools. It doesn't mention that this should be checked before buy_product, nor does it rule out list_products or preview_product as alternatives. The agent must infer usage from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_productsARead-onlyIdempotentInspect
Search the public catalog (maximum 50 products).
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| category | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover the safety profile with readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the bar is lower. The description adds genuinely useful behavior beyond those annotations: the result set is capped at 50 products and the search is scoped to the public catalog. It does not describe pagination or ordering, but for a simple read-only search this is a minor gap.
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?
A single sentence that front-loads the verb, names the resource, and folds the key constraint inline. Every word earns its place; nothing is redundant and the structure is optimal for agent scanning.
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 read-only tool with three optional scalar parameters and no output schema, the description covers the core facts an agent needs: purpose, scope (public catalog), and the 50-result cap. The main gaps are that the return format is unspecified (no output schema exists) and behavior with no arguments is implicit, but these are minor given the tool's low complexity.
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?
With 0% schema description coverage, the description carries the burden of explaining the three parameters, but it only implicitly touches them: 'search' hints at query's role and 'maximum 50' maps to the limit cap. The category parameter is entirely undocumented in the description, and how the parameters combine (AND vs OR, precedence) is left to inference.
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 the specific verb 'search' and identifies the resource as the 'public catalog' of products, making the tool's function unmistakable. The 'public' qualifier and search framing clearly distinguish this from the sibling tools buy_product, preview_product, and list_payment_methods.
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 implies this is the discovery surface for the public catalog, but it never explicitly states when to prefer this over preview_product (e.g., for a single product's details) or buy_product. No exclusion or alternative-routing guidance is given; usage must be inferred from sibling names and context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
preview_productCRead-onlyIdempotentInspect
Read the free curated product preview.
| Name | Required | Description | Default |
|---|---|---|---|
| product | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds only 'free curated', which is minor context and does not meaningfully disclose return behavior, errors, or access requirements.
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 short sentence with no filler, and the main action verb is front-loaded. However, the brevity comes at the cost of useful detail, so it is concise but not fully informative.
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?
With one required parameter, no output schema, and no parameter documentation, the description is not complete enough for an agent to call the tool correctly. It does not say what the preview contains, what value to pass, or how this differs from list_products.
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 0% and the description never explains what the 'product' parameter should contain. There is no indication of whether product expects an ID, slug, name, or other identifier, leaving the only required parameter essentially undocumented.
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 names a specific verb ('Read') and resource ('free curated product preview'), so an agent can tell this is a read-only preview operation. It does not explicitly distinguish itself from siblings like list_products or buy_product, but the semantic difference is clear enough.
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 provides no guidance on when to use this tool versus alternatives such as list_products or buy_product. It does not state exclusions, prerequisites, or any routing logic.
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.
4 tool updates
- First observed
buy_product - First observed
list_payment_methods - First observed
list_products - First observed
preview_product
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
Free MCP tools: the only MCP linter, health checks, cost estimation, and trust evaluation.
Five free MCP tools, including proof-before-payment preview, plus one authorized x402 pack.
2,000+ MCP servers read at source level. Know what one does before you connect. Free, no key.
Free OpenAI-compatible inference with signed provenance receipts and 3 focused MCP tools.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceA remotely hosted MCP server that lets ops personnel investigate and resolve inventory oversells without engineer involvement.-

mcp-reviewofficial
AlicenseNot gradedqualityAmaintenanceAn MCP server for in-loop design review of web previews. It enables agents to submit a preview URL, receive structured findings with suggested fixes, and recheck after applying changes, while never editing code itself.1MIT- FlicenseNot gradedqualityDmaintenancePaid remote MCP for Veo 4 credit waste gate with tools for cost estimation, duplicate detection, budget checking, cheaper variant recommendations, and structured receipt issuance.-
- FlicenseNot gradedqualityDmaintenancePaid remote MCP for hosted MCP server providing structured receipts, usage logs, and audit-ready evidence for agent and CI workflows.-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
The tools are mostly distinct: list_products and preview_product both read product information but are differentiated by catalog search versus curated preview. buy_product could be mistaken for an actual purchase action, but the description clarifies it only returns purchase directions, and list_payment_methods is clearly separate.
All tool names follow a consistent verb_noun snake_case pattern: buy_product, list_payment_methods, list_products, preview_product. The naming is uniform and predictable, even though buy_product's semantics are somewhat misleading.
Four tools is a reasonable count for a narrow tollbooth/payment-oriented server. Each tool has a distinct surface area, though the set is minimal and leans heavily toward read-only operations.
The set covers catalog browsing and payment-method listing, but the only purchase-related tool explicitly never creates an invoice, checkout, or payment. This leaves the core transaction flow incomplete—there is no way to actually complete a purchase or trigger payment, which is likely a significant gap.