loading…
Search for a command to run...
loading…
Provides persistent SQLite-based memory and unified tool abstraction for AI agents to support long-term context and complex tool chaining. It enables automated
Provides persistent SQLite-based memory and unified tool abstraction for AI agents to support long-term context and complex tool chaining. It enables automated code analysis, file operations, and environment discovery through a standardized interface.
Archived: There's been many significant improvements to agentic frameworks since I first made this server, many of it's features are implemented natively in most agents today
Axom is a Model Context Protocol (MCP) server that provides persistent memory, tool abstraction, and chain-of-thought for AI agents.
Axom runs as stdio MCP - your IDE spawns it automatically. No manual server startup needed.
Requires (Git) Bash, PowerShell, or a make provider.
git clone https://github.com/PugzUI/axom-mcp.git
cd axom-mcp
make install
What make install does:
pip install -e .)..env from .env.example.make help # Project command menu
make install-help # Install options (e.g. DRY_RUN, etc.)
make clean-help # Cleanup options (incl. CLEAN_ALL=1 for full reset)
make agents-help # Agent commands
make db-help # Database commands
make test-help # Test commands
make lint-help # Lint commands (ruff dev tool)
make format-help # Format commands (ruff dev tool)
make install automatically configures MCP for detected agents. The installer uses the best available command:
**axom-mcp** (if in PATH)**axom** (if in PATH)**python -m axom_mcp.server** (fallback)See docs/agents/INDEX.md for detailed agent configuration.
For Cursor, ~/.cursor/mcp.json should contain:
{
"mcpServers": {
"axom": {
"command": "axom-mcp"
}
}
}
For Codex, ~/.codex/config.toml should contain:
[mcp_servers.axom]
command = "axom-mcp"
Axom provides five core MCP tools:
**axom_mcp_memory**: Store and retrieve persistent context.**axom_mcp_exec**: File operations and shell commands with pre-meditated chaining.**axom_mcp_analyze**: Code analysis and debugging.**axom_mcp_discover**: Map environment and capabilities.**axom_mcp_transform**: Convert data between formats.Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"axom-mcp-server": {
"command": "npx",
"args": []
}
}
}