rlm-mcp
Provides tools for interacting with Git repositories, enabling version control operations such as viewing diffs, committing changes, and managing branches.
Click on "Deploy 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., "@rlm-mcpanalyze the architecture of this project"
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.
rlm-mcp: The Recursive Project Brain
rlm-mcp is an advanced Model Context Protocol (MCP) server that transforms your local repository into a "Shared Project Brain." It uses recursive reasoning (via RLM) and local LLMs (Ollama) to analyze, reason, and remember your project's architecture, helping teams maintain deep understanding of complex codebases like Grails Core.
Features
Frictionless Auto-Pilot: Automatically installs Ollama, manages Python environments (
uv), and pulls optimized reasoning models.Persistent Knowledge: Distills recursive reasoning into portable YAML knowledge bases that can be checked into Git.
Workspace-Aware: Automatically discovers project configurations in
.mcp/or.rlm/folders.Recursive Reasoning: Uses multi-step LLM loops to trace complex class hierarchies and architectural patterns.
Related MCP server: Blueprint MCP
Installation
For Developers (via Cargo)
If you have Rust installed:
cargo install --git https://github.com/borinquenkid/rlm-mcpFor Users (Pre-compiled Binaries)
Download the latest binary for your OS from the Releases page.
Rename the file to
rlm-mcpand move it to your/usr/local/bin(or equivalent).Ensure the binary is executable:
chmod +x rlm-mcp.
Note: The first time you run rlm-mcp, it will automatically provision your local Python environment, pull the necessary reasoning models (approx. 5GB), and configure the background services.
Project Structure
.mcp/: Configuration and project-specific knowledge base.knowledge_base/: Distilled "permanent facts" about your project (version-controlled).trajectories/: Raw logs of every "thinking" session (ignored by Git).
Multi-Agent Configuration
rlm-mcp is designed to orchestrate multiple specialized AI tools. You can "inject" sub-MCP servers into the Master Brain by adding them to .mcp/rlm_config.json:
{
"sub_servers": {
"git": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-git", "--repository", "."]
}
}
}Once defined, rlm-mcp will automatically discover these tools, making them available to your recursive reasoning engine (e.g., mcp.git.get_diff()).
Usage with MCP Clients
To use rlm-mcp in your IDE (like Claude Desktop), add this to your MCP configuration:
{
"mcpServers": {
"rlm-mcp": {
"command": "/path/to/rlm-mcp"
}
}
}rlm-mcp will then auto-provision the local Ollama backend and Python environment on its first launch.
This server cannot be deployed
Maintenance
Related MCP Connectors
Shared memory for coding agents. Stop re-explaining your codebase every session.
Give your AI agent a persistent map of your project's structure, dependencies, and bugs.
Self-hostable shared brain for you and your AI agents — docs, flows, meetings, decisions, rationale
Project memory, semantic code search, and grounded agent context.
Related MCP Servers
- AlicenseAqualityCmaintenanceArchitectural memory layer for AI coding. Automatically extracts decisions, detects security gaps, and analyzes git history from your codebase in one command.328 npm2MIT
- AlicenseAqualityAmaintenanceProvides AI coding agents with durable architecture memory for repositories by generating structured project maps of responsibilities, relationships, and risks.628 npm1MIT
- AlicenseNot gradedqualityBmaintenanceProvides AI coding assistants with deep, semantic understanding of local codebases via AST-aware chunking, cross-repo symbol graphs, and architectural memory, enabling context-aware code search and dependency tracing.10MIT
- AlicenseNot gradedqualityAmaintenanceGives AI coding assistants persistent project memory and semantic code search, running fully locally with no API keys required.MIT