ArchMCP
archmcp - MCP Architectural Snapshot Server and Knowledge Graph
What is ArchMCP?
ArchMCP is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to archmcp - mcp architectural snapshot server and knowledge graph
archmcp - MCP Architectural Snapshot Server and Knowledge Graph
This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- archmcp - MCP Architectural Snapshot Server and Knowledge Gr
Use Cases
Maintainer
Works with
Installation
Manual Installation
npx archmcpConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use ArchMCP
ArchMCP is an architectural snapshot and knowledge graph MCP server that analyzes codebases to extract modules, symbols, dependencies, and routes into a structured graph representation accessible to AI agents. It exposes tools for generating architectural snapshots, querying dependency facts, exploring modules, traversing call graphs, and performing impact analysis — helping AI assistants understand complex codebases before making changes. Developers can use it to answer questions about architecture, identify cyclic dependencies, and plan refactors with full structural context.
Prerequisites
- Go 1.21 or higher installed to build the server binary
- An MCP-compatible client such as Claude Desktop or Cursor
- A codebase to analyze (supports Go, Python, TypeScript, and other languages)
- Optional: a configuration YAML file to specify repo paths, ignore patterns, and active extractors
Clone the repository
Clone the archmcp repository to your local machine.
git clone https://github.com/dejo1307/archmcp.git
cd archmcpBuild the archmcp binary
Compile the Go source into an executable binary using the Go toolchain.
go build -o archmcp ./cmd/...Create a configuration file
Create a YAML configuration file that points the server at your codebase and specifies any directories to ignore during analysis.
# mcp-arch.yaml
repo: /path/to/your/project
ignore:
- vendor
- node_modules
- .git
extractors:
- go
- typescript
output:
dir: /tmp/archmcp-snapshotsGenerate an initial snapshot
Run the server with your config file to generate the first architectural snapshot of your codebase.
./archmcp --generate mcp-arch.yamlConfigure Claude Desktop
Register archmcp as an MCP server in your Claude Desktop configuration, passing the config file path as an argument.
{
"mcpServers": {
"archmcp": {
"command": "/path/to/archmcp/archmcp",
"args": ["/path/to/mcp-arch.yaml"]
}
}
}ArchMCP Examples
Client configuration
Claude Desktop configuration for the ArchMCP server with a YAML config file pointing at your project.
{
"mcpServers": {
"archmcp": {
"command": "/path/to/archmcp/archmcp",
"args": ["/Users/yourname/projects/myapp/mcp-arch.yaml"]
}
}
}Prompts to try
Example prompts for architecture exploration, dependency analysis, and impact assessment.
- "Generate an architectural snapshot of my project and summarize the main modules"
- "What packages would I need to modify to add a new REST API endpoint?"
- "Are there any cyclic dependencies or architectural layer violations in the codebase?"
- "Traverse the dependency graph from the AuthService and show everything that depends on it"
- "Perform an impact analysis: if I change the UserRepository interface, what breaks?"Troubleshooting ArchMCP
go build fails with module not found errors
Run 'go mod tidy' to download and resolve all module dependencies before building. Ensure your Go version is 1.21 or higher by running 'go version'.
Snapshot generation completes but the knowledge graph is missing many symbols
Check your mcp-arch.yaml configuration — ensure the 'repo' path is correct and the right extractors are listed for your language stack. Verify that the directories containing source files are not accidentally excluded by ignore patterns.
Claude Desktop does not see the archmcp tools after restarting
Confirm the absolute path to the archmcp binary in the 'command' field is correct and that the binary is executable (run 'chmod +x /path/to/archmcp'). Also verify the YAML config file path passed in 'args' exists and is readable.
Frequently Asked Questions about ArchMCP
What is ArchMCP?
ArchMCP is a Model Context Protocol (MCP) server that archmcp - mcp architectural snapshot server and knowledge graph It connects AI assistants to external tools and data sources through a standardized interface.
How do I install ArchMCP?
Follow the installation instructions on the ArchMCP GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.
Which AI clients work with ArchMCP?
ArchMCP works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is ArchMCP free to use?
Yes, ArchMCP is open source and available under the MIT license. You can use it freely in both personal and commercial projects.
ArchMCP Alternatives — Similar Developer Tools Servers
Looking for alternatives to ArchMCP? Here are other popular developer tools servers you can use with Claude, Cursor, and VS Code.
Ecc
★ 188.2kThe agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Javaguide
★ 155.8kJava 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Gemini CLI
★ 104.5kA secure MCP server that wraps the Google Gemini CLI, allowing clients to query Gemini models using local OAuth sessions without requiring an API key. It provides tools for model interaction and diagnostics with built-in protection against command in
Awesome MCP Servers
★ 87.3k⭐ Curated list of Model Context Protocol (MCP) servers - tools that extend Claude Desktop, Cursor, Windsurf, and other MCP clients with custom capabilities.
MCP Servers
★ 86.0kModel Context Protocol Servers
CC Switch
★ 77.5kA cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io
Browse More Developer Tools MCP Servers
Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up ArchMCP in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use ArchMCP?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.