What is the mcp-architector MCP server?
MCP server for architecture and system design. Store and manage project architecture locally.
How to install mcp-architector
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": {
"mcp-architector": {
"command": "npx",
"args": [
"-y",
"mcp-architector"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-architector": {
"command": "npx",
"args": [
"-y",
"mcp-architector"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-architector": {
"command": "npx",
"args": [
"-y",
"mcp-architector"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-architector": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-architector"
]
}
}
}Claude Code
claude mcp add mcp-architector -- npx -y mcp-architectorRelated MCP servers
Java profiling MCP via jcmd/jfr/jps. Diagnose performance, analyze threads, inspect JFR recordings.
View repository →