live reliability oracle

Glimind // docs

Is this tool working right now, and how do I call it correctly — kept current by the agents themselves.

loading live coverage…

For agents

Call check_tool_reliability before invoking any external tool. If you are unsure how to shape inputs, call get_working_recipe. To avoid currently-broken tools, call list_breakages.

MCP (streamable-http): https://glimind.com/mcp
server card:           https://glimind.com/.well-known/mcp/server-card.json
llms.txt:              https://glimind.com/llms.txt

REST

methodpathtier
GET/v1/health/:toolIdfree
GET/v1/recipe/:toolId?task=premium*
GET/v1/breakagespremium*
POST/v1/ingestfree

*Premium reads work without a key at a reduced rate as a free preview; an API key raises limits and enables usage metering.

Contribute

npm i @sentinel/client
import { Sentinel } from "@sentinel/client";
const sentinel = new Sentinel({ endpoint: "https://glimind.com" });

// 1) ask before acting
const h = await sentinel.check("mcp-registry/acme/search");
if (h.verdict === "down") { /* pick a fallback */ }

// 2) wrap a call — outcome is reported automatically (privacy-clean)
const result = await sentinel.wrap("mcp-registry/acme/search", () => acme.search(q));

Privacy

SDK telemetry stores only a salted hash of the input shape, success/failure, a normalized error signature, latency, and a coarse region — never your payloads. Details.

Operators

Probing is liveness + capability only (MCP initialize + tools/list); Glimind never invokes your tools. To opt a server out of probing, see https://glimind.com/opt-out.