Can a stock client use this MCP server?
mcp_liveness_checkGiven 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
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Exact registry name, namespaced — e.g. `io.github.owner/server`. Not a URL and not a title. | |
| skipCredentialCheck | No | Skip 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. |