arch-optimize
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@arch-optimizescan the project at /home/user/myapp"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
arch-optimize
Architecture optimization skill: six decay risk scanning (R1-R6), architect-programmer dual-agent collaboration, anti-AI-flavor detection, and a local script toolkit. Provides coding conventions, quality metrics, and regression guarding for AI-driven code review and refactoring workflows.
Overview
arch-optimize delivers a complete workflow from architecture analysis through incremental optimization to regression guarding:
Six Decay Risk Scanning (brooks-lint, based on 12 classic engineering books): Structured R1-R6 diagnosis with Symptom -> Source -> Consequence -> Remedy findings
Architect-Programmer Dual-Agent Collaboration: Separates strategy (architect) from execution (programmer) to avoid the "god's eye view" problem
Anti-AI-Flavor Detection: 18 AI-specific low-quality patterns (dead code, placeholders, model pride, etc.)
Related MCP server: flyto-indexer
Script Tools
The project includes 5 executable scripts that turn theoretical formulas and detection rules into runnable code. All scripts use Python 3.8+ standard library only (zero external dependencies) and output structured JSON.
Script | Stage | Function | Output Format |
| Stage 1 | Directory scanning, entry point detection, tech stack identification, document localization | JSON / Human-readable |
| Stage 1 | Dependency graph generation (Mermaid/DOT), circular dependency detection | JSON / Mermaid / DOT |
| Stage 2 | R1-R6 six decay risk scanning with four-part findings | JSON / Human-readable |
| Stage 3 | MI/CC/HV/Health Score calculation, hotspot identification | JSON / Human-readable |
| Stage 5 | Test baseline recording, regression comparison | JSON / Human-readable |
MCP Tools
The Level 3 MCP plugin exposes 5 structured tools via the MCP protocol (FastMCP framework, stdio transport). AI agents can discover and call these tools without parsing CLI usage.
MCP Tool | Stage | CLI Script | Read-Only | Idempotent |
| Stage 1 | arch_scan.py | Yes | Yes |
| Stage 1 | dep_graph.py | Yes | Yes |
| Stage 2 | risk_diagnose.py | Yes | Yes |
| Stage 3 | quality_metrics.py | Yes | Yes |
| Stage 5 | regression_guard.py | No | No |
MCP Tool Parameters
arch_optimize_scan
target(str, required): Project root directory pathdepth(int, default 5): Maximum directory scan depth (1-20)
arch_optimize_dep_graph
target(str, required): Source code directory pathformat(str, default "mermaid"): Graph format, "mermaid" or "dot"max_depth(int, default 0): Maximum scan depth, 0 = unlimited
arch_optimize_risk_diagnose
target(str, required): Project directory pathrisk(str, optional): Filter single risk type "R1"-"R6"min_severity(str, optional): Minimum severity "Critical"/"Warning"/"Suggestion"
arch_optimize_quality_metrics
target(str, optional): Analysis directory (mutually exclusive withfile)file(str, optional): Analyze a single file (mutually exclusive withtarget)min_cc(int, default 0): Only report functions with CC >= this value
arch_optimize_regression_guard
action(str, required): Subcommand "record"/"compare"target(str, record optional): Working directorybaseline(str, compare required): Baseline JSON filecurrent(str, compare required): Current JSON filetest_cmd(str, record optional): Test commandoutput(str, record required): Output JSON file path
Installation
Prerequisites
Python 3.10 or higher
pip or any PEP 517 compatible build backend
From Source
git clone https://github.com/your-username/arch-optimize.git
cd arch-optimize
pip install -e .Dependencies
mcp>=1.28.1,<2
pydantic>=2.0.0The 5 analysis scripts (arch_scan, dep_graph, risk_diagnose, quality_metrics, regression_guard) use Python standard library only -- no external dependencies required. The MCP server (mcp_server.py) requires mcp and pydantic.
Usage
CLI (Level 2)
# Stage 1: Architecture perception
python3 scripts/arch_scan.py --target ./src --json
python3 scripts/dep_graph.py --target ./src --json
# Stage 2: Risk diagnosis
python3 scripts/risk_diagnose.py --target ./src --json
python3 scripts/risk_diagnose.py --target ./src --risk R5 --json
python3 scripts/risk_diagnose.py --target ./src --min-severity Critical --json
# Stage 3: Quality metrics
python3 scripts/quality_metrics.py --target ./src --json
python3 scripts/quality_metrics.py --file src/main.py --json
python3 scripts/quality_metrics.py --target ./src --min-cc 10
# Stage 5: Regression guard
python3 scripts/regression_guard.py record --output baseline.json
python3 scripts/regression_guard.py record --output current.json
python3 scripts/regression_guard.py compare --baseline baseline.json --current current.json --jsonMCP Server (Level 3)
Start the MCP server via stdio transport:
python3 scripts/mcp_server.pyConfigure in your MCP client (e.g., Claude Desktop, TRAE, etc.):
{
"mcpServers": {
"arch_optimize": {
"command": "python3",
"args": ["path/to/arch-optimize/scripts/mcp_server.py"]
}
}
}Supported Languages
Language | Extensions | Import Parsing | CC Calculation | Function Extraction |
Python | .py | ast module | ast traversal | ast.FunctionDef |
Go | .go | import parsing | regex + brace matching | func keyword |
C/C++ | .c .h .cpp .hpp | #include parsing | regex + brace matching | function signature matching |
Rust | .rs | use/mod parsing | regex + brace matching | fn keyword |
TypeScript | .ts .tsx | import/from parsing | regex + brace matching | function / arrow functions |
JavaScript | .js .jsx | import/require parsing | regex + brace matching | function / arrow functions |
Quality Gate Rules
Gate | Threshold | Type | Failure Behavior |
Zero regression rate | = 100% | Hard | Block PR merge |
Health score | >= 70 | Soft | Warning + requires manual approval |
Release health score | >= 80 | Hard | Block release |
New code MI | >= 15 | Hard | Block PR merge |
Cyclomatic complexity | <= 15 | Hard | Block PR merge |
Circular dependencies | = 0 | Hard | Block PR merge |
Performance regression | < 10% | Soft | Warning + requires explanation |
Design Principles
Diagnosis before fix: Never propose fixes before completing risk diagnosis (brooks-lint iron law)
Incremental over large-scale: At most 5 improvement requirements per iteration, small steps
Zero regression tolerance: Breaking existing functionality costs more than adding new features
Division of labor over omniscience: Architect handles strategy, programmer handles execution, avoiding god's eye view
Quantitative over intuitive: MI, health score provide objective baselines
False positive protection: Avoid misclassifying normal design pattern usage as violations
Executable over pure documentation: All theoretical formulas and detection rules have corresponding script implementations that AI agents can directly call for quantitative data
Protocol over command line: MCP plugin encapsulation enables tools to be discovered and called by any AI agent via standard protocol without parsing CLI usage
Project Structure
arch-optimize/
├── SKILL.md # Skill definition and workflow documentation
├── README.md # This file
├── LICENSE # MIT License
├── .gitignore # Python gitignore
├── requirements.txt # Python dependencies
├── pyproject.toml # Python project configuration
├── scripts/
│ ├── arch_scan.py # Stage 1: Architecture perception
│ ├── dep_graph.py # Stage 1: Dependency graph
│ ├── risk_diagnose.py # Stage 2: R1-R6 risk diagnosis
│ ├── quality_metrics.py # Stage 3: Quality metrics
│ ├── regression_guard.py # Stage 5: Regression guard
│ └── mcp_server.py # MCP server (Level 3)
├── references/
│ ├── architecture-principles.md # Clean Architecture, SOLID, DDD, R1-R6
│ ├── coding-conventions.md # C/C++/Rust/Go/TypeScript conventions
│ ├── quality-metrics.md # MI, health score, SQALE
│ ├── regression-guard.md # Zero regression rate, asymmetric scoring
│ └── collaboration-workflow.md # Architect-programmer collaboration
└── evaluations/
└── evaluation.xml # 12 QA pairs for MCP tool evaluationLicense
MIT License. See LICENSE for details.
捐赠支持 (Donate)
如果这个项目对你有帮助,可以请我喝杯咖啡 ☕ 感谢支持! 然后就是可以看看我的https://github.com/bfxh/unified-rx-mcp 主要是skill还是有好多的局限的
If this project helps you, feel free to buy me a coffee ☕ Thanks for your support!
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityCmaintenanceAn MCP server that transforms repositories into queryable knowledge by combining static code analysis with git history tracking. It allows users to investigate codebase structure, identify fragile files based on churn, and receive risk assessments through natural language queries.7

flyto-indexerofficial
Alicense-qualityAmaintenanceMCP server that gives AI assistants impact analysis, cross-project reference tracking, and code health scoring.4Apache 2.0- Flicense-qualityDmaintenanceMCP server for automated architectural mapping, security vulnerability detection, ML asset tracking, and code metrics in local repositories.
- AlicenseAqualityBmaintenanceAn MCP server that provides local code quality analysis for AI coding assistants, supporting file analysis, git diff review, and full project scanning with quality scoring.42MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.
MCP server for AI access to Swagger by SmartBear.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/bfxh/arch-optimize'
If you have feedback or need assistance with the MCP directory API, please join our Discord server