What is the AdrMcp MCP server?
MCP server for Architectural Decision Records: navigate, author, validate, link, and analyze them.
How to install AdrMcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"adr-mcp": {
"command": "dnx",
"args": [
"AdrMcp"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"adr-mcp": {
"command": "dnx",
"args": [
"AdrMcp"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"adr-mcp": {
"command": "dnx",
"args": [
"AdrMcp"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"adr-mcp": {
"type": "stdio",
"command": "dnx",
"args": [
"AdrMcp"
]
}
}
}Claude Code
claude mcp add adr-mcp -- dnx AdrMcpRelated MCP servers
RoselineMCP
Active
MCP server for C# code analysis and automated fixing using Roslyn analyzers and code fix providers.
3
View repository →C#
MIT