Agent Rescue
Server Details
Cross-session idempotency, URLs as schema-validated JSON, and a record of missing capabilities.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
3 toolscheck_and_claimCheck and claimAInspect
Atomically check whether an action identified by a key was already performed, and claim it if not. Use it before performing a non-idempotent action that may have completed in an earlier attempt (a payment, a message, a write), or when you need to remember something across sessions. Returns 'claimed' if you are first and 'already_done' if not. Do not use it as a general data store or as a result cache.
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | Stable identifier for the action, e.g. 'invoice-2026-07-A491:pay'. | |
| metadata | No | Small payload returned alongside the claim. Do not include secrets. | |
| ttl_seconds | No | How long the claim lasts, in seconds. Default 86400 (1 day), max 30 days. |
TDQS
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 explains atomicity, return values ('claimed' and 'already_done'), and the intended context. It does not detail error behavior or persistence specifics, but the TTL parameter is documented in the schema.
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 three sentences long, with the core action stated first, followed by usage context and return values. It is concise, front-loaded, and contains no redundant or filler content.
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?
Despite having no output schema, the description explicitly states the possible return values. Combined with full parameter coverage in the schema and clear usage/anti-usage guidance, the description is complete enough for an agent to select and 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?
The input schema already covers all three parameters with 100% coverage, including detailed descriptions for 'key', 'metadata', and 'ttl_seconds'. The description adds no parameter-specific information beyond the schema, so the baseline score 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 uses a specific verb phrase, 'Atomically check whether... and claim it if not', which precisely identifies the tool's function. It clearly distinguishes the tool from its siblings by focusing on idempotency claiming, a unique capability not shared by fetch_structured or request_capability.
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 states when to use the tool: 'Use it before performing a non-idempotent action' and gives concrete examples (payment, message, write). It also provides a when-not-to-use directive: 'Do not use it as a general data store or as a result cache.'
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fetch_structuredFetch a URL as structured JSONAInspect
Fetch a public URL and return its content as JSON validated against the schema you pass. Use it when you need data from a page and cannot parse it reliably yourself. Do not use it for URLs requiring authentication or a session, for internal networks, or when you already have the content — extract it yourself in that case. extracted_by tells you where the answer came from: structured_data when the page already published it (JSON-LD, OpenGraph, or a JSON body — exact and free) or model when it had to be extracted from the text. If structured extraction is unavailable, the response carries degraded: true, data: null and the page text for you to parse: check degraded before reading data.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Public http(s) URL. | |
| schema | Yes | JSON Schema of the object you want back. Missing fields come back as null. | |
| instructions | No | Optional. What exactly to look for if the page is ambiguous. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description fully owns behavioral disclosure. It explains extraction modes (`structured_data` vs `model`), the degraded mode with `degraded: true`, `data: null`, and fallback `text`, and how to handle missing structured extraction. This is rich, honest behavior documentation.
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 dense but every sentence earns its place: purpose, usage boundaries, extraction modes, and degraded handling. It is organized from high-level action to detailed response interpretation, making it scannable and appropriately sized for the behavioral complexity.
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 no output schema and no annotations, the description fully explains expected response fields (`extracted_by`, `degraded`, `data`, `text`) and instructs the agent to check `degraded` before reading `data`. It covers the core functionality, failure modes, and usage exclusions, making the tool fully comprehensible.
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% for all three parameters, so the baseline is 3. The description adds minimal context beyond the schema (e.g., 'validated against the schema' reinforces the schema's purpose) but does not meaningfully extend parameter semantics.
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 clearly that it fetches a public URL and returns content as JSON validated against a provided schema. The verb 'Fetch' and resource 'URL' are specific, and the exclusion of auth/internal/known content differentiates it from potential alternatives.
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 ('when you need data from a page and cannot parse it reliably yourself') and when-not-to-use (auth, internal networks, already-have-content). It further instructs on interpreting `extracted_by` to know the extraction source, giving clear decision guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
request_capabilityRequest a capability that does not existAInspect
Record a specific need that none of the tools available to you can cover. Today it almost always answers that the capability is unavailable, and suggests alternatives only when they genuinely exist; its purpose is to measure what agents ask for and nobody serves. Use it when you are blocked by a missing capability — not for general questions, and not for anything you can work out by reasoning.
| Name | Required | Description | Default |
|---|---|---|---|
| need | Yes | What exactly you need, in one or two sentences. Do not include personal data. | |
| context | No | Optional. What you tried and why it did not work. | |
| deadline | No | Optional. ISO 8601. | |
| would_pay | No | Optional. Whether your policy allows paying to get this solved. Answer honestly: a false answer unlocks nothing and degrades the measurement. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does so well: it discloses that the tool 'almost always answers that the capability is unavailable,' that alternatives are suggested only when they genuinely exist, and that the underlying purpose is to measure unmet agent needs. This is significant behavioral context beyond the basic 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?
The description is three sentences, front-loaded with the core action, and each sentence adds value: what it does, how it behaves, and when to use it. There is no filler or repetition of schema details.
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 no annotations and no output schema, the description covers purpose, behavior, and usage well. It explains the likely response ('almost always answers that the capability is unavailable') and the fallback behavior. It does not fully specify the response format, but for a simple request-logging tool the description is nearly 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?
Schema description coverage is 100%, so the baseline is 3. The description does not add parameter-level meaning beyond the schema; however, it frames the overall intent ('Record a specific need') which aligns with the 'need' parameter. No extra semantics are provided for context, deadline, or would_pay.
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 and resource: 'Record a specific need that none of the tools available to you can cover.' It clearly distinguishes this from other tools by framing it as a fallback for missing capabilities and explicitly says it is not for general questions or things solvable by reasoning.
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 when-to-use guidance: 'Use it when you are blocked by a missing capability' and includes exclusions: 'not for general questions, and not for anything you can work out by reasoning.' It does not name specific alternative sibling tools, but the exclusions are clear enough for an agent to avoid misuse.
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
- First observed
check_and_claim - First observed
fetch_structured - First observed
request_capability
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
Machine-native capabilities with explicit contracts and machine-readable commerce.
Reliable async execution for agent tool calls: schema gating, retries, idempotency, audit trail.
Payment decisions, durable evidence, x402 resource discovery and live gateway status for AI agents.
- GentkeyOAuthcom.gentkey
One MCP URL for all your connectors — scoped writes, enforced constraints, and a full audit trail.
Related MCP Servers
- FlicenseAqualityAmaintenanceExactly-once execution for irreversible agent actions: an agent claims the right to run an effect, and a retry after a lost response returns the sealed result instead of charging again. 12 tools over stdio, including a gateway mode where the agent holds a single-use ticket and never the provider key.9-
- AlicenseNot gradedqualityBmaintenanceProvides durable mission state for AI agents, enabling crash-safe recovery, verified completion, and explicit reconciliation of uncertain side effects without duplicate or blind retries.Apache 2.0
- AlicenseAqualityBmaintenanceA local-first MCP control-and-proof plane for scoped continuity, action authorization, budget ceilings, evidence-bound claims, durable recovery, and Ed25519-signed traces.14Apache 2.0
- AlicenseNot gradedqualityAmaintenanceUniversal verifiable recovery for long-running AI agents with semantic checkpoints, idempotent action ledger and hash chained log as a deny by default MCP server. Framework agnostic with adapters for LangGraph, LangChain and OpenAI plus gateway and OTel.26Apache 2.0
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a completely distinct concern: atomic claim-checking, structured URL fetching, and capability gap reporting. There is no overlap in purpose or use case.
All names are snake_case and start with a verb, but 'check_and_claim' uses a conjunction and compound verb while the others are simple verb_noun. Minor deviation from a strict pattern.
Three tools is small but fits the focused 'rescue' purpose: atomic claim, structured fetch, and capability request. Each earns its place; slightly thin but not deficient.
The surface covers key agent rescue needs: idempotency, reliable external data retrieval, and signaling missing capabilities. Minor gaps exist (e.g., no tool for local state inspection) but core workflows are supported.