Skip to main content
Glama

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 3.8/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct aspect: schema version comparison, actual vs expected response checking, and general data validation. No overlap in purpose.

Naming Consistency5/5

All tool names follow a consistent pattern: [domain concept]-[tool type] (e.g., breaking-change-analyzer, drift-detector, schema-validator), all lowercase with hyphens.

Tool Count5/5

Three tools is appropriate for the focused domain of schema drift detection, covering the main operations without being too few or excessive.

Completeness5/5

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 tools
breaking-change-analyzerAInspect

Analyzes breaking changes between two schema versions. Detects: field removal, type changes, newly required fields, enum value removal, constraint tightening.

ParametersJSON Schema
NameRequiredDescriptionDefault
newSchemaYesNew (candidate) schema version
oldSchemaYesPrevious (deployed) schema version
Behavior3/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
schemaYesExpected JSON schema
responseYesActual API response to check against schema
Behavior4/5

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.

Conciseness4/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
dataYesData to validate (any type)
schemaYesJSON schema to validate against
Behavior3/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.