ArchMemory MCP
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., "@ArchMemory MCPShow me the project's architecture and rules."
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.
ArchMemory MCP
Give AI coding agents a memory of your architecture.
Open source MCP server built with Laravel that gives AI coding agents (Cursor, Claude Code, etc.) structured access to your project's architecture, rules, modules, and technical decisions.
Features (MVP)
5 MCP Tools — project context, rules, modules, ADRs, change validation
Artisan CLI — init, analyze, update
.archmemory/storage — Markdown + JSON, Git-versionableRules Engine — validates code changes against architecture rules
DDD Architecture — Memory, Mcp, Rules, Analysis domains
Related MCP server: codeweave-mcp
Quick Start
composer install
cp .env.example .env
php artisan key:generate
# Initialize architecture memory (if not already present)
php artisan archmemory:init
# Analyze project and update architecture.md
php artisan archmemory:analyzeCursor Integration
Add to .cursor/mcp.json (included in this repo):
{
"mcpServers": {
"archmemory": {
"command": "php",
"args": ["artisan", "mcp:start", "archmemory"],
"cwd": "${workspaceFolder}",
"env": {
"ARCHMEMORY_PATH": "${workspaceFolder}/.archmemory"
}
}
}
}Then restart Cursor. The agent can call:
Tool | Description |
| Project stack, architecture, rules summary |
| Full rules from |
| Module details and dependencies |
| ADR decision records |
| Check code against architecture rules |
Artisan Commands
php artisan archmemory:init # Create .archmemory/ structure
php artisan archmemory:analyze # Generate architecture.md from project
php artisan archmemory:update # Refresh context after changes
php artisan mcp:start archmemory # Start MCP stdio serverProject Structure
app/Domains/
├── Memory/ # Read/write .archmemory files
├── Mcp/ # MCP server + tools
├── Rules/ # Rules engine
└── Analysis/ # Project analyzer
.archmemory/ # Architecture memory (committed to Git)
docs/ # Design documentsDocumentation
PROJECT_CONTEXT.md — Full project specification
architecture-design.md — System architecture
mcp-tools-design.md — MCP tool specs
Testing
php artisan test # 32 tests
vendor/bin/pint --test # Code style check
vendor/bin/pint # Auto-fix styleCI runs on push via GitHub Actions (.github/workflows/tests.yml).
License
MIT
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
- Flicense-quality-maintenanceAn MCP server that provides persistent project context, workflow management, and knowledge capture for AI coding agents. It enables agents to maintain structured memory across sessions by tracking project profiles, conventions, skills, and technical debt.Last updated7
- Alicense-qualityBmaintenanceAn MCP server that gives AI agents structured code understanding and precise code intelligence via local indexing of AST, call graphs, and semantic search.Last updated964Apache 2.0
- Alicense-qualityBmaintenanceAn MCP server that provides AI coding agents with AST-accurate, context-budget-aware codebase querying, safety gates, and team policy integration via structured tools and a local plugin layer.Last updated5404MIT
- AlicenseAqualityBmaintenanceAn MCP server that helps AI agents comprehend a codebase by providing tools for navigating, searching, and understanding code structure and history.Last updated10MIT
Related MCP Connectors
An MCP server that gives your AI access to the source code and docs of all public github repos
MCP server for AI agent profiles and smart notes. 60+ coding prompt packs with expert personas.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
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/IWill29/archmemory'
If you have feedback or need assistance with the MCP directory API, please join our Discord server