Skip to main content
Glama
tosin2013

mcp-adr-analysis-server

by tosin2013

compare_adr_progress

Read-onlyIdempotent

Validates implementation status by cross-referencing TODO.md progress, ADR decisions, and environment configuration to detect incomplete or non-compliant features.

Instructions

Compare TODO.md progress against ADRs and current environment to validate implementation status

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
todoPathNoPath to TODO.md file to analyzeTODO.md
strictModeNoEnable strict validation mode with reality-check mechanisms against overconfident assessments
environmentNoTarget environment context for validation (auto-detect will infer from project structure)auto-detect
projectPathNoPath to project root for environment analysis.
adrDirectoryNoDirectory containing ADR filesdocs/adrs
validationTypeNoType of validation to performfull
deepCodeAnalysisNoPerform deep code analysis to distinguish mock from production implementations
environmentConfigNoEnvironment-specific configuration and requirements
includeFileChecksNoInclude file existence and implementation checks
functionalValidationNoValidate that code actually functions according to ADR goals, not just exists
environmentValidationNoEnable environment-specific validation rules and checks
includeRuleValidationNoInclude architectural rule compliance validation

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed3 schema fields changedv1.0.0
    • addedInput schema / properties / environment
      Added value: +{
      +  "default": "auto-detect",
      +  "description": "Target environment context for validation (auto-detect will infer from project structure)",
      +  "enum": [
      +    "development",
      +    "staging",
      +    "production",
      +    "testing",
      +    "auto-detect"
      +  ],
      +  "type": "string"
      +}
    • addedInput schema / properties / environmentConfig
      Added value: +{
      +  "description": "Environment-specific configuration and requirements",
      +  "properties": {
      +    "performanceRequirements": {
      +      "description": "Performance requirements for this environment",
      +      "type": "object"
      +    },
      +    "requiredFiles": {
      +      "description": "Files required for this environment",
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    "requiredServices": {
      +      "description": "Services that must be implemented for this environment",
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    "securityLevel": {
      +      "description": "Required security level for this environment",
      +      "enum": [
      +        "low",
      +        "medium",
      +        "high",
      +        "critical"
      +      ],
      +      "type": "string"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedInput schema / properties / environmentValidation
      Added value: +{
      +  "default": true,
      +  "description": "Enable environment-specific validation rules and checks",
      +  "type": "boolean"
      +}
  2. First observed

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safe, non-mutating behavior is established. The description adds the scoping behavior of comparing three inputs, but does not go beyond that; there is no contradiction with annotations.

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 front-loaded sentence that names the action, the inputs, and the intended outcome with no filler or repetition. It is concise without sacrificing the core purpose.

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?

Despite rich schema coverage and safety annotations, the tool has 12 parameters, nested objects, and no output schema, yet the description never explains what a validation result looks like or how strictMode and validationType shape behavior. The agent is left to infer the output contract, making this incomplete for a high-complexity tool.

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%, so all 12 parameters, including the nested environmentConfig object, are already documented structurally. The description adds no parameter-level detail beyond naming the three subject areas (TODO.md, ADRs, environment), so the baseline score of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Compare') and a clear resource set ('TODO.md progress against ADRs and current environment'), making the core purpose understandable. It does not explicitly distinguish itself from sibling tools like validate_all_adrs or analyze_deployment_progress, but the comparison-oriented phrasing is distinct enough to be useful.

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 the tool is used when implementation status needs to be validated against TODO/ADR/environment evidence, but it gives no explicit when-to-use conditions, exclusions, or alternative sibling routing. With many overlapping validation and analysis sibling tools, more guidance would help an agent choose correctly.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/tosin2013/mcp-adr-analysis-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server