MCP Server
io.github.tosin2013/mcp-adr-analysis-server MCP Server
io.github.tosin2013/mcp-adr-analysis-server
What is the io.github.tosin2013/mcp-adr-analysis-server MCP server?
AI-powered MCP server for analyzing Architectural Decision Records (ADRs).
How to install io.github.tosin2013/mcp-adr-analysis-server
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
PROJECT_PATHPath to the project directory to analyze (defaults to current directory)
OPENROUTER_API_KEYsecretOpenRouter API key for AI-powered analysis (required for full execution mode)
EXECUTION_MODEExecution mode: 'full' for AI results or 'prompt-only' for prompts (default: prompt-only)
ADR_DIRECTORYADR directory relative to project path (default: docs/adrs)
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-adr-analysis-server": {
"command": "npx",
"args": [
"-y",
"mcp-adr-analysis-server"
],
"env": {
"PROJECT_PATH": "<YOUR_PROJECT_PATH>",
"OPENROUTER_API_KEY": "<YOUR_OPENROUTER_API_KEY>",
"EXECUTION_MODE": "<YOUR_EXECUTION_MODE>",
"ADR_DIRECTORY": "<YOUR_ADR_DIRECTORY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-adr-analysis-server": {
"command": "npx",
"args": [
"-y",
"mcp-adr-analysis-server"
],
"env": {
"PROJECT_PATH": "<YOUR_PROJECT_PATH>",
"OPENROUTER_API_KEY": "<YOUR_OPENROUTER_API_KEY>",
"EXECUTION_MODE": "<YOUR_EXECUTION_MODE>",
"ADR_DIRECTORY": "<YOUR_ADR_DIRECTORY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-adr-analysis-server": {
"command": "npx",
"args": [
"-y",
"mcp-adr-analysis-server"
],
"env": {
"PROJECT_PATH": "<YOUR_PROJECT_PATH>",
"OPENROUTER_API_KEY": "<YOUR_OPENROUTER_API_KEY>",
"EXECUTION_MODE": "<YOUR_EXECUTION_MODE>",
"ADR_DIRECTORY": "<YOUR_ADR_DIRECTORY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-adr-analysis-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-adr-analysis-server"
],
"env": {
"PROJECT_PATH": "<YOUR_PROJECT_PATH>",
"OPENROUTER_API_KEY": "<YOUR_OPENROUTER_API_KEY>",
"EXECUTION_MODE": "<YOUR_EXECUTION_MODE>",
"ADR_DIRECTORY": "<YOUR_ADR_DIRECTORY>"
}
}
}
}Claude Code
claude mcp add mcp-adr-analysis-server --env PROJECT_PATH=<YOUR_PROJECT_PATH> --env OPENROUTER_API_KEY=<YOUR_OPENROUTER_API_KEY> --env EXECUTION_MODE=<YOUR_EXECUTION_MODE> --env ADR_DIRECTORY=<YOUR_ADR_DIRECTORY> -- npx -y mcp-adr-analysis-serverRelated MCP servers
Self-hosted MCP server: sandboxed browser, desktop, vision, code-edit packs for any agent.
View repository →