Routavo
Server Details
Any API, four tools: discover, call with routing and signed receipts, verify, dispute.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
4 toolscallCall an APIAInspect
Route a call to the Routavo network, meter it, and return the result. Give either a provider id from discover(), or a capability and let Routavo pick using its published routing rule. Optional max_price and max_latency_ms constrain the choice. Failed calls are recorded but cost nothing.
| Name | Required | Description | Default |
|---|---|---|---|
| plan | No | Instead of one call, a sequence of up to 8 steps: [{ id, capability | provider, arguments, max_price?, max_latency_ms? }]. A later step may take a value from an earlier one with { "$ref": "<step id>.output.<path>" }, e.g. { "$ref": "geo.output.results[0].lat" }. The whole plan is quoted before anything runs; with dry_run it is only quoted. Steps run in order and stop at the first failure. Each step returns its own receipt and the response carries one total. | |
| batch | No | Instead of one arguments object, up to 50 of them for the same capability or provider. Run in parallel, each with its own receipt, one total. Failed items cost nothing and do not stop the others. | |
| budget | No | A task budget: { id, max }. Spend under this id is tracked across any number of calls, plans and batches, and a call that would take it past max is refused with code "budget". { id, statement: true } returns what the budget has spent and the receipts behind it. | |
| fields | No | Return only these output paths, e.g. ["results.name", "results.lat", "results.lng"]. Saves tokens; the receipt still hashes the full answer. | |
| quorum | No | Ask 2 or 3 providers the same question and get an agreement score with every answer. Each provider is charged. Refused if fewer providers clear your constraints, so quote it first with dry_run. | |
| recipe | No | A named, published plan, e.g. "weather_for_place". Give its arguments and it runs the steps for you, quoted first, with the last step's output on top. discover() lists recipes with their inputs and estimated price. | |
| wallet | No | Your wallet address, asserted. Attributes metering and a daily cap on the free tier; it proves nothing. To pay from a balance, prove the wallet once at /api/wallet and send the key it returns as wallet_key or as Authorization: Bearer rw_... | |
| dry_run | No | Quote only: which provider would be chosen, at what price, with what latency, and why. Nothing is called, charged or counted. | |
| payment | No | Pay this one call with x402: { rail: "x402", payload: <PaymentPayload> }, an EIP-3009 authorization to the pay-to address for at least the price, signed by your wallet. The requirements to sign are in discover() and in any payment_required error. A facilitator verifies and settles it; the receipt carries the transaction. | |
| failover | No | Default true when routing by capability: if the chosen provider fails, the next eligible one is tried and only the one that answered is charged. Set false to fail fast. | |
| provider | No | Provider id, e.g. "open-meteo.geocode". Omit to route by capability. | |
| arguments | No | Arguments in the capability contract shape from discover(). Learn geocode once; every provider behind it takes the same input and returns the same output. | |
| max_price | No | Do not route above this price per call, e.g. "0.0030" | |
| max_total | No | For a plan: do not run if the quoted total exceeds this, e.g. "0.0100". | |
| capability | No | Capability to route on, e.g. "geocode". Ignored when provider is given. | |
| wallet_key | No | A wallet key (rw_...) from /api/wallet. Proves the wallet, and calls are paid from its deposited USDC balance. Prefer sending it as the Authorization: Bearer header. | |
| max_latency_ms | No | Do not route to a provider slower than this p50 | |
| idempotency_key | No | Your own id for this call, up to 64 characters. A retry with the same key within 24 hours returns the same result and receipt and is never charged again. The output is kept for those 24 hours only because you asked for replay. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of disclosure, and it does address the key behavioral trait: calls are metered, and 'failed calls are recorded but cost nothing.' It doesn't explicitly state that successful calls incur charges or require a wallet, but 'meter it' plus the failure-cost note makes the paid nature clear. This is much more transparent than a bare 'call an API' description.
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?
Three short sentences front-load the core action, routing modes, constraints, and failure-cost behavior, with no filler. Every sentence earns its place, and the most important information appears first.
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 an 18-parameter tool with plans, batches, budgets, quorum, payment, failover, and idempotency, the description only orients the agent to the single-call mode and two routing parameters. The schema is rich and 100% covered, so nothing is hidden, but the description fails to signal the tool's advanced capabilities and never mentions output structure. A more complete overview would at least hint at the plan/batch/budget/payment modes.
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%, so baseline is 3, but the description adds meaning beyond the schema by linking provider ids to discover() and explaining capability routing via 'published routing rule.' It also identifies max_price and max_latency_ms as the choice-constraining parameters, which helps the agent understand how the parameters work together. This goes slightly beyond simply repeating the schema's per-parameter descriptions.
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 opens with a specific verb-resource pair: 'Route a call to the Routavo network, meter it, and return the result.' It then explains the two invocation modes (provider id vs. capability), which clearly distinguishes it from siblings like discover, dispute, and verify. It is not a tautology and tells the agent exactly what the tool does.
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 directs agents to 'give either a provider id from discover(), or a capability and let Routavo pick using its published routing rule,' which is clear when-to-use guidance for the two main invocation styles. It also names max_price and max_latency_ms as constraints, helping the agent choose parameters. It doesn't explicitly contrast with dispute or verify, but those are not natural alternatives to calling an API.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
discoverDiscover APIsAInspect
Find APIs on the Routavo network that can perform a capability. Returns each provider with its published price, measured latency, terms, and the exact argument schema for calling it, plus the rule Routavo uses to pick between them. Call this before call() when you do not already know a provider id.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Free text when you do not know the capability name, e.g. "turn an address into coordinates" or "will it rain tomorrow". Matched against names, aliases, tags and descriptions; results come back ranked with a score. | |
| capability | No | What you need done, e.g. "geocode" or "forecast". Omit to list everything. |
Output Schema
| Name | Required | Description |
|---|---|---|
| count | Yes | |
| routing | Yes | |
| providers | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden and succeeds: it discloses the returned fields (price, latency, terms, argument schema, selection rule), the ranked matching behavior, and the intended invocation context. There is no ambiguity about side effects or read-only status because the description frames it as a discovery/query operation.
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?
Three sentences with no filler: the first states the action and output, the second lists the return payload, and the third gives the usage trigger. The most important guidance is front-loaded and every 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?
For a two-optional-parameter discovery tool with a complete input schema and an output schema, the description covers invocation timing, output content, and the distinction from call(). Nothing essential 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 coverage is 100%, and the schema already provides rich descriptions for both query and capability. The tool description adds the conceptual context 'discovery before call' but does not add meaning to the parameters beyond what the schema already states, so 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 states a specific verb ('find') and resource ('APIs on the Routavo network that can perform a capability'), and clearly distinguishes itself from call() by explaining it discovers providers before a provider id is known. It also enumerates exactly what is returned, so an agent can tell what the tool is for.
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 says 'Call this before call() when you do not already know a provider id,' which gives both a positive trigger and a clear contrast with the sibling call tool. This is exactly the kind of when-to-use guidance an agent needs.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
disputeDispute a chargeAInspect
Flag a metered call for the provider to review. Takes the receipt and a short reason. The receipt must verify and must have charged something. The dispute lands in that provider's queue and is visible to Routavo. One dispute per receipt.
| Name | Required | Description | Default |
|---|---|---|---|
| reason | Yes | What was wrong, in plain words. Up to 500 characters. Do not paste the response body. | |
| receipt | Yes | The receipt object from the call() result you are disputing. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and discloses real side effects: the dispute is placed in the provider's queue, is visible to Routavo, and is limited to one per receipt. It stops short of stating reversibility or auth requirements, but the important write-side behavior is clear.
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?
Five short sentences, each carrying distinct value: action, inputs, preconditions, destination/side effect, and unique constraint. No filler or repetition.
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 two-parameter action with no output schema, the description covers what, when, preconditions, and consequences. It does not specify the return shape or error behavior, but those are not needed to invoke the tool correctly.
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%, but the description adds beyond the schema by noting the reason should be short and that the receipt must verify and have charged something. It also connects the receipt parameter to the call() result implicitly through the mention of a metered call.
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 opens with a specific verb-resource pair ('Flag a metered call') and names the exact domain (disputing a charge). This clearly distinguishes it from sibling tools like call, discover, and verify by indicating this is the review/flagging action, not a creation or verification action.
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?
It gives concrete preconditions: the receipt must verify and must have charged something, and one dispute is allowed per receipt. It does not explicitly name sibling alternatives or say when not to use them, but the conditions clearly gate when the tool applies.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verifyVerify a receiptAInspect
Check a receipt returned by call(). Confirms the signature, so the provider, price, fee, and the hashes of what went in and came out are exactly what Routavo recorded. Works for anyone holding the receipt. Reveals nothing else.
| Name | Required | Description | Default |
|---|---|---|---|
| receipt | Yes | The receipt object from a call() result. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It does disclose key behavioral traits: signature confirmation, the specific fields verified, accessibility to anyone holding the receipt, and a privacy guarantee ('reveals nothing else'). However, it does not describe what happens on invalid signature (error vs. false return) or the return shape, which is a notable gap for an agent.
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?
Four short sentences, all informative. The main verb and object are front-loaded, and the privacy guarantee is a compact final sentence. No redundant phrases or 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?
The description covers purpose, parameter source, and privacy, but does not specify the return value or behavior on invalid signatures. Since there is no output schema, the description should be more explicit about what the agent receives after verification, especially in failure cases.
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%, so the baseline is 3. The description adds value beyond the schema by listing the receipt fields that are verified (provider, price, fee, hashes), which clues the agent into the expected structure and semantics of the receipt object.
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 specific verb ('Check/Confirms'), a specific resource ('a receipt returned by call()'), and enumerates exactly what is confirmed (provider, price, fee, and hashes). This clearly differentiates it from siblings like call, discover, and dispute, which all have distinct purposes.
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?
It gives clear context: use this when you hold a receipt returned by call() and need to confirm its authenticity. It does not explicitly name alternatives or describe when not to use it, so it falls short of a 5, but the purpose is specific enough that an agent would not confuse it with siblings.
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
call - First observed
discover - First observed
dispute - First observed
verify
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
Discover, inspect, quote, and call external tools, with usage and final credit settlement audits
1260Pay-per-call APIs and MCP services for agents, no accounts or keys, with verifiable receipts.
Discover machine-payable APIs, probe x402 payment terms, and run seller operations. Non-custodial.
AI agent infrastructure for discovery, authorization, execution, identity, and signed receipts.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceA peer-to-peer protocol for AI agents to call tools on each other over HTTP, with cross-provider translation, file transfer, batching, rate limiting, and audit logging.MIT
- AlicenseNot gradedqualityDmaintenanceDiscovers and queries x402-payable APIs at runtime — enables autonomous agents to find, evaluate, and pay for services via USDC micropayments on Base without API keys or subscriptions.MIT
- FlicenseAqualityCmaintenance9 tools, Lightning-gated. Pay per call. For agents that need verifiable signed actions with an audit trail. Nostr event signing via daemon Publish events to relays Create Lightning invoices Action receipts — signed proof of agent actions Identity attestation9-
- AlicenseAqualityCmaintenanceAuthentication, pay-per-call metering, and signed receipts for AI agents and MCP tools using Bitcoin and Lightning Network.71121MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool occupies a clear stage in the workflow: discover searches for providers, call executes the metered call, verify checks receipts, and dispute handles post-call issues. Even though discover and call both reference capabilities, their purposes are distinct and unlikely to be confused.
All four tools use the same concise single-verb imperative style: call, discover, dispute, verify. The pattern is consistent and predictable, with no mixed conventions or misleading names.
Four tools is well-scoped for the focused domain of routing calls on the Routavo network, metering them, and handling verification and disputes. Each tool earns its place, and none feels redundant or missing.
The tool surface covers the full client-side lifecycle: discover capabilities, make a call, verify the receipt, and dispute a charge. The only possible additions would be conveniences like history or dispute tracking, but the core workflow is complete.