api-schema-drift-detector
Server Details
Cloudflare Workers MCP server: api-schema-drift-detector
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- lazymac2x/api-schema-drift-detector-api
- GitHub Stars
- 0
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 3.8/5 across 3 of 3 tools scored.
Each tool targets a distinct aspect: schema version comparison, actual vs expected response checking, and general data validation. No overlap in purpose.
All tool names follow a consistent pattern: [domain concept]-[tool type] (e.g., breaking-change-analyzer, drift-detector, schema-validator), all lowercase with hyphens.
Three tools is appropriate for the focused domain of schema drift detection, covering the main operations without being too few or excessive.
The tool set covers schema version comparison, API response drift detection, and schema validation, providing a complete workflow for drift detection without obvious gaps.
Available Tools
3 toolsbreaking-change-analyzerAInspect
Analyzes breaking changes between two schema versions. Detects: field removal, type changes, newly required fields, enum value removal, constraint tightening.
| Name | Required | Description | Default |
|---|---|---|---|
| newSchema | Yes | New (candidate) schema version | |
| oldSchema | Yes | Previous (deployed) schema version |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It lists what changes are detected, providing reasonable transparency for a read-only analysis tool. However, it does not describe how the analysis works (e.g., schema format assumptions, whether it handles nested objects) or any side effects, rate limits, or auth needs.
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 one sentence followed by a bulleted list, front-loaded with the main purpose. Every sentence is necessary and concise with 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?
Given no output schema, the description fails to explain the format of the result (e.g., a report, list of changes). This is a significant gap for an analysis tool. Additionally, with siblings present, the description does not differentiate when to use each tool, reducing completeness.
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% with both parameters described in the schema ('New (candidate) schema version' and 'Previous (deployed) schema version'). The description adds no additional meaning beyond these descriptions, so baseline 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 clearly states the tool's purpose: 'Analyzes breaking changes between two schema versions.' It lists specific change types (field removal, type changes, etc.), distinguishing it from sibling tools like drift-detector and schema-validator.
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 for comparing schema versions to detect breaking changes, but does not explicitly specify when to use this tool over siblings (drift-detector, schema-validator) or provide exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
drift-detectorAInspect
Detects differences between an actual API response and an expected JSON schema. Reports missing_required (error), type_mismatch (error), enum_violation (error), missing_optional (warning), unexpected_field (info). Recurses into nested objects.
| Name | Required | Description | Default |
|---|---|---|---|
| schema | Yes | Expected JSON schema | |
| response | Yes | Actual API response to check against schema |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses key behavioral traits: it reports five specific diff types with severity (error/warning/info) and recurses into nested objects. With no annotations, it carries the full transparency burden; it covers what outputs to expect, though it does not mention error handling for invalid inputs.
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 a single sentence that front-loads the main purpose ('Detects differences...') followed by bullet-like details. It is efficient, though it could be split for readability. No unnecessary words, but the list format in prose is slightly dense.
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?
For a tool with no output schema, the description adequately explains the output structure (list of differences with types and severity) and behavior (recursion). It covers the core functionality, but misses any mention of constraints on the schema input (e.g., must be a valid JSON Schema). Overall, it is sufficient given the tool's simplicity.
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?
Both schema and response parameters are described in the input schema ('Expected JSON schema' and 'Actual API response to check against schema'). The description does not add new meaning beyond the schema, but it contextualizes that both are required and how they are used together. Given 100% schema coverage, a 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 clearly states it detects differences between an actual API response and an expected JSON schema, listing specific difference types and severity levels. This distinguishes it from sibling tools like 'schema-validator' (validation only) and 'breaking-change-analyzer' (version change analysis), making the purpose unambiguous.
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 for checking API response against a schema, but does not explicitly state when to use this tool versus alternatives (e.g., schema-validator for strict validation, breaking-change-analyzer for version differences). No exclusion or context cues are provided, leaving the agent to infer.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
schema-validatorAInspect
Validates if data conforms to a JSON schema. Returns valid:true/false and an error message on failure.
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Data to validate (any type) | |
| schema | Yes | JSON schema to validate against |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses the return format (valid true/false and error message), but does not mention edge cases, performance, or error handling beyond the basic output. Adequate but minimal.
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 a single sentence that immediately specifies the tool's action and output. Every word serves a purpose, with no filler or repetition.
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?
For a simple validation tool with 2 parameters and no output schema, the description is fully sufficient. It covers input, action, and output format, leaving no critical gaps.
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 baseline is 3. The description adds no additional meaning beyond the schema's parameter descriptions; it merely reiterates that data is any type and schema is a JSON schema. No enrichment.
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 verb 'validates' and the resource 'data conforms to a JSON schema', differentiating it from siblings like 'breaking-change-analyzer' and 'drift-detector' which analyze changes rather than initial validation.
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?
No explicit guidance on when to use or when not to use this tool versus alternatives. The description implies use for validation, but lacks contextual boundaries or exclusion criteria.
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!