MCP Endpoint Health & Schema Drift Monitor
Server Details
Live health, tool inventory, and schema-drift checks for public MCP endpoints. Free, no auth.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.1/5 across 4 of 4 tools scored.
The two 'check_' tools (check_mcp_endpoint and check_schema_drift) have overlapping purposes; check_mcp_endpoint already checks for schema changes, which may cause confusion on which to use. However, the descriptions clarify that check_schema_drift provides a detailed diff, while check_mcp_endpoint gives a simpler yes/no status.
All tool names follow a consistent verb_noun pattern: 'check_' for probing actions and 'get_' for reading stored history. This makes the tool set predictable and easy to navigate.
With only 4 tools, the set is slightly minimal but covers the core monitoring needs adequately. Each tool serves a distinct purpose within the domain, so the count feels reasonable for a focused MCP health checker.
The tool set provides basic monitoring: live probing, schema drift detection, historical tool list, and uptime history. Minor gaps exist, such as missing alert configuration or trend analysis, but the core lifecycle is covered.
Available Tools
4 toolscheck_mcp_endpointAInspect
Probe an MCP endpoint right now: is it alive, which transport it speaks, how many tools it exposes, and whether its tool schema changed since the last check. Use before depending on a third-party MCP server.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Public http(s) URL of the MCP endpoint to inspect. | |
| include_tools | No | Return the full tool list, not just the count. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description covers key behaviors: probing, checking liveness, transport, tool count, and schema changes. However, it omits details like potential errors, idempotency guarantees, or authentication requirements, which are important for a no-annotation tool.
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 extremely concise, using a single sentence plus a usage hint. It front-loads the tool's purpose with a bulleted list of checks, making it easy to parse quickly.
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 the tool's simplicity (2 params, no output schema), the description provides sufficient context about what the tool returns (alive, transport, tool count, schema change). It could mention if the tool modifies state, but the word 'probe' implies read-only.
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 description doesn't add much beyond the schema's parameter descriptions. It does clarify that include_tools returns the full list vs count, but that is already implied by the schema's description.
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 clearly states the tool probes an MCP endpoint for liveness, transport type, tool count, and schema changes. It distinguishes itself from siblings like check_schema_drift and get_known_tools by focusing on a specific endpoint's current state.
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 advises using the tool before depending on a third-party MCP server, providing clear context. While it doesn't contrast with siblings, the advice is actionable and situation-specific.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_schema_driftAInspect
Probe an MCP endpoint and diff its tool schema against the last stored snapshot: tools added, removed, or whose description/inputSchema changed. Schema drift fails quietly mid-run, which is why it is worth checking.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Public http(s) URL of the MCP endpoint to inspect. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so description carries full burden. It discloses core behavior (probing, diffing) and a key trait (fails quietly), but lacks details on auth, errors, or rate limits. Acceptable for a simple tool.
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?
Two concise sentences, front-loaded with purpose, no fluff. 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?
Simple tool with one param and no output schema. Description covers purpose, behavior, and motivation. Slightly lacking in return format, but sufficient for a probe tool.
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% (url parameter descriptively documented). Description adds context about the diff operation but not specific param syntax. 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?
Description explicitly states the tool probes an MCP endpoint and diffs its tool schema against a stored snapshot, listing changes (added, removed, changed). This clearly distinguishes it from siblings like check_mcp_endpoint or get_known_tools.
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 implies usage by noting 'Schema drift fails quietly mid-run, which is why it is worth checking', providing context but no explicit when-to-use or alternative comparisons.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_known_toolsAInspect
The tool list last observed at an MCP endpoint, with the timestamp of the most recent schema change. Reads stored history; does not probe.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Public http(s) URL of the MCP endpoint to inspect. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses it reads stored history (non-destructive) and does not probe, adding the timestamp attribute. It does not detail authentication or empty-link behavior, but for a simple read-only tool this is sufficient.
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 very concise with two sentences. The first sentence front-loads the core purpose (tool list + timestamp), and the second adds behavioral context. No wasted words.
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 explains what is returned (tool list and timestamp) and the behavioral constraint (reads history, no probing). It does not explain history population or limitations, but for a simple retrieval tool this is fairly 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?
The input schema has 100% coverage for the single 'url' parameter with a description. The tool description adds no additional meaning beyond what the schema already provides, meeting the baseline.
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 clearly states the tool retrieves the tool list last observed at an MCP endpoint along with a timestamp, and explicitly distinguishes it from probing tools. The verb 'get' and resource 'known tools' are specific.
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 provides context that the tool reads stored history and does not probe, implying it is for historical data rather than live checks. However, it does not explicitly name sibling tools or state when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_uptimeAInspect
Uptime history for an MCP endpoint over the last N days (max 30), with incident windows. Reads stored history; does not probe.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Public http(s) URL of the MCP endpoint to inspect. | |
| days | No | Window in days. Default 30. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses that the tool is a read-only operation on stored history and does not perform live probes, which is transparent for its simple nature. No destructive or auth concerns are necessary.
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 two sentences, front-loading the purpose and adding a clarifying behavioral note. Every sentence earns its place with no redundancy or fluff.
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 the tool's simplicity (2 parameters, no nested objects, no output schema), the description is complete. It covers what the tool does, its input constraints, and its behavioral limitation, leaving no gaps for the agent's understanding.
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 schema already describes both parameters. The description adds 'over the last N days (max 30)' which aligns with the schema's day parameter. It does not add significant new meaning beyond what the schema provides, warranting the baseline score.
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 clearly states 'Uptime history for an MCP endpoint over the last N days (max 30), with incident windows,' using a specific verb-resource pair. It distinguishes from siblings by noting it reads stored history vs. probing, which contrasts with real-time checks like check_mcp_endpoint.
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 'Reads stored history; does not probe,' which tells the user when to use (for historical data) and when not to (for real-time status). It does not name sibling alternatives directly but implies through context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
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!