← Index

io.github.tosin2013/mcp-adr-analysis-server

io.github.tosin2013/mcp-adr-analysis-server·v2.4.1·Other
Quality Score
84
/100

AI-powered MCP server for analyzing Architectural Decision Records (ADRs).

§01  Install
Claude Desktop (claude_desktop_config.json)
{
  "mcpServers": {
    "mcp-adr-analysis-server": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-adr-analysis-server"
      ],
      "env": {
        "PROJECT_PATH": "<project_path>",
        "OPENROUTER_API_KEY": "<your-openrouter_api_key>",
        "EXECUTION_MODE": "<execution_mode>",
        "ADR_DIRECTORY": "<adr_directory>"
      }
    }
  }
}
Cursor (.cursor/mcp.json)
{
  "mcpServers": {
    "mcp-adr-analysis-server": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-adr-analysis-server"
      ],
      "env": {
        "PROJECT_PATH": "<project_path>",
        "OPENROUTER_API_KEY": "<your-openrouter_api_key>",
        "EXECUTION_MODE": "<execution_mode>",
        "ADR_DIRECTORY": "<adr_directory>"
      }
    }
  }
}
Cline (cline_mcp_settings.json)
npx -y mcp-adr-analysis-server
§02  Environment variables
PROJECT_PATH

Path to the project directory to analyze (defaults to current directory)

OPENROUTER_API_KEY
secret

OpenRouter API key for AI-powered analysis (required for full execution mode)

EXECUTION_MODE

Execution mode: 'full' for AI results or 'prompt-only' for prompts (default: prompt-only)

ADR_DIRECTORY

ADR directory relative to project path (default: docs/adrs)

§03  MCP Quality Score  ·  methodology
freshness
24
completeness
10
installability
25
documentation
15
stability
10
§04  Alternatives in Other