Skip to main content
Glama

Can a stock client use this MCP server?

mcp_liveness_check
Read-only

Given a server's exact name in the official MCP registry, make one initialize call to the endpoint its listing names and report what a client with no credential gets.

Outcomes: usable (it connected and negotiated a protocol version), needs_credential (401 or 403 — the answer then says whether a credential can be obtained in-band or whether a person has to create one), charged (402, access is for sale), unreachable (the listed endpoint is not an MCP server: wrong URL, dead host, or a 200 that is not JSON-RPC), local_only (no remote endpoint; it must be spawned as a process), and not_listed (no server with that exact name).

Call this before spending a call on a server you found in the catalogue. Roughly two in five remote listings do not answer a stock client.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesExact registry name, namespaced — e.g. `io.github.owner/server`. Not a URL and not a title.
skipCredentialCheckNoSkip the OAuth discovery chain on a 401. Faster (one request instead of up to five) but the answer then cannot say whether a credential is obtainable.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations only say readOnly/openWorld/non-idempotent; the description goes well beyond that, disclosing that the tool makes a live network call to a third-party endpoint, probes OAuth discovery on 401, distinguishes 402/403/401 semantics, and notes that a non-JSON-RPC 200 counts as unreachable. The `skipCredentialCheck` trade-off (one request vs. up to five, losing credential-obtainability reporting) is exactly the kind of behavioral detail annotations cannot carry.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loaded with the action, then a compact outcome glossary, then a one-line usage rule. Every sentence carries load — the outcome list substitutes for the absent output schema, and the base-rate sentence justifies the tool's existence.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema exists, and the description enumerates the full result vocabulary along with what each outcome means, so an agent knows exactly what it will get back. For a two-parameter, read-only diagnostic tool this leaves nothing material unspecified.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

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 earns a bump by pinning `name` to "the official MCP registry" and clarifying that credential-obtainability reporting is what `skipCredentialCheck` trades away, which gives the flag a decision-relevant meaning beyond the schema's speed note.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource: make one `initialize` call to the endpoint named in a registry listing and report what a credential-less client receives. The enumerated outcome vocabulary (`usable`, `needs_credential`, `charged`, `unreachable`, `local_only`, `not_listed`) makes the tool's scope unmistakable and distinct from the sibling `mcp_liveness_explain_outcomes`, which evidently only explains those outcomes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Gives an explicit trigger: "Call this before spending a call on a server you found in the catalogue," backed by a base-rate justification (two in five remote listings fail). No explicit when-not clause or named alternative, but the pre-flight positioning is clear enough to route correctly.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.