RLM-MCP
Implements the Recursive Language Model pattern, enabling LLMs to process arbitrarily long contexts through session-based document management, on-demand chunking, BM25 search, and artifact storage.
README
RLM-MCP: Recursive Language Model Server for Claude Code
Status: ✅ v0.2.2 - Production-Ready for Team Environments
A Model Context Protocol (MCP) server implementing the Recursive Language Model pattern from Zhang et al. (2025), enabling LLMs to process arbitrarily long contexts by treating prompts as external environment objects.
What's New in v0.2.x:
- v0.2.2: Exact BM25 doc_ids filtering • Highlight bounds clamping • Server config defaults • Budget exemption for session.close
- v0.2.1: Atomic budget enforcement • chunk_index persistence • Truncation warnings • Error message improvements
- v0.2.0: Persistent indexes • Concurrent session safety • Structured logging • Batch document loading (2-3x faster)
Key Insight
Long prompts should not be fed into the neural network directly but should instead be treated as part of the environment that the LLM can symbolically interact with.
Features
Core Capabilities
- Session-based document management — Load files, directories, or inline content with batch processing
- On-demand chunking — Fixed, line-based, or delimiter-based strategies with intelligent caching
- BM25 search — Lazy-built, persistently cached, survives server restarts
- Artifact storage — Store derived results with complete span provenance
Production Features (v0.2.0)
- Persistent indexes — BM25 indexes saved to disk with atomic writes and corruption recovery
- Concurrent session safety — Per-session locks prevent race conditions in multi-user environments
- Structured logging — JSON output with correlation IDs for production observability
- Batch document loading — Concurrent file loading with memory-bounded semaphores (2-3x faster)
Status & Validation
v0.2.2 production-ready validation:
- ✅ 103/103 tests passing (100% functionality + production features)
- ✅ All 13 core tools implemented with canonical naming
- ✅ MCP protocol integration confirmed with real clients
- ✅ Large corpus tested — 1M+ chars loaded and indexed
- ✅ Performance validated — Sub-second searches, <100ms index loads from disk
- ✅ Concurrency tested — 50 concurrent operations, no race conditions
- ✅ Memory safety — Bounded semaphores prevent OOM on large batches
- ✅ Production logging — JSON structured logs with correlation tracking
Test Coverage
- Error handling: 13 tests
- Concurrency safety: 9 tests
- Index persistence: 10 tests
- Integration workflows: 14 tests
- Large corpus performance: 5 tests
- Structured logging: 13 tests
- Batch loading: 7 tests
- Provenance tracking: 8 tests
- Storage layer: 11 tests
- v0.2.2 bug fixes: 13 tests
See MIGRATION_v0.1_to_v0.2.md for upgrade guide.
Installation
pip install rlm-mcp
Or with development dependencies:
pip install rlm-mcp[dev]
Quick Start
from rlm_mcp import run_server
# Start the MCP server
run_server()
Tools
All tools use canonical naming: rlm.<category>.<action>
| Category | Tools |
|---|---|
rlm.session |
create, info, close |
rlm.docs |
load, list, peek |
rlm.chunk |
create |
rlm.span |
get |
rlm.search |
query |
rlm.artifact |
store, list, get |
Workflow Pattern
- Initialize:
rlm.session.createwith config - Load:
rlm.docs.loaddocuments - Probe:
rlm.docs.peekat structure - Search:
rlm.search.queryto find relevant sections - Chunk:
rlm.chunk.createwith appropriate strategy - Process:
rlm.span.get+ client subcalls - Store:
rlm.artifact.storeresults with provenance - Close:
rlm.session.close
Configuration
Configuration file: ~/.rlm-mcp/config.yaml
# Data storage
data_dir: ~/.rlm-mcp
# Session limits (per-session overridable)
default_max_tool_calls: 500
default_max_chars_per_response: 50000
default_max_chars_per_peek: 10000
# Batch loading (v0.2.0)
max_concurrent_loads: 20 # Max concurrent file loads (memory safety)
max_file_size_mb: 100 # Reject files larger than this
# Logging (v0.2.0)
log_level: "INFO" # DEBUG, INFO, WARNING, ERROR
structured_logging: true # JSON format (true) vs human-readable (false)
log_file: null # Optional: "/var/log/rlm-mcp.log"
# Tool naming: strict by default (fails if SDK doesn't support canonical names)
# Only set to true for experimentation with older MCP SDKs
allow_noncanonical_tool_names: false
Tool Naming (Strict vs Compat Mode)
By default, RLM-MCP requires an MCP SDK that supports explicit tool naming (e.g., FastMCP). This ensures tools are discoverable as rlm.session.create, not rlm_session_create.
- Strict mode (default): Server fails to start if SDK doesn't support
tool(name=...) - Compat mode: Falls back to function names with a warning. Use only for experimentation.
# ~/.rlm-mcp/config.yaml
allow_noncanonical_tool_names: true # Enable compat mode (not recommended)
Logging (v0.2.0)
RLM-MCP produces structured JSON logs for production observability. Each operation gets a unique correlation ID for tracing related events.
JSON Log Format
{
"timestamp": "2026-01-15T10:30:45.123456Z",
"level": "INFO",
"logger": "rlm_mcp.server",
"message": "Completed rlm.session.create",
"correlation_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"session_id": "session-123",
"operation": "rlm.session.create",
"duration_ms": 42,
"success": true
}
Filtering Logs
# Filter by session
cat /var/log/rlm-mcp.log | jq 'select(.session_id == "session-123")'
# Filter by operation
cat /var/log/rlm-mcp.log | jq 'select(.operation == "rlm.search.query")'
# Track operation with correlation ID
cat /var/log/rlm-mcp.log | jq 'select(.correlation_id == "a1b2c3d4...")'
# Only errors
cat /var/log/rlm-mcp.log | jq 'select(.level == "ERROR")'
See docs/LOGGING.md for detailed logging guide.
Session Config
{
"max_tool_calls": 500, # Budget enforcement
"max_chars_per_response": 50000, # DOS protection
"max_chars_per_peek": 10000, # DOS protection
"chunk_cache_enabled": True,
"model_hints": { # Advisory for client
"root_model": "claude-opus-4-5-20251101",
"subcall_model": "claude-sonnet-4-5-20250929",
"bulk_model": "claude-haiku-4-5-20251001"
}
}
Architecture
┌─────────────────────────────────────────┐
│ Claude Skills (policy layer) │
├─────────────────────────────────────────┤
│ MCP Server (RLM Runtime) │
│ • Session management + concurrency │
│ • Document/span operations │
│ • BM25 search (lazy, persisted) │
│ • Batch loading with semaphores │
│ • Response size caps │
├─────────────────────────────────────────┤
│ Local Persistence (v0.2.0) │
│ • SQLite: sessions, docs, spans │
│ • Blob store: content-addressed │
│ • Index cache: persistent BM25 │
│ • Structured logs: JSON + correlation │
└─────────────────────────────────────────┘
Design Principles
- Local-first — All reads/writes hit local storage
- Client-managed subcalls — MCP is the "world", client makes LLM calls
- Immutable documents — Content-addressed, never modified
- On-demand chunking — Chunk at query time, cache results
- DOS protection — Hard caps on response sizes
Development
# Clone and install with uv (recommended)
git clone https://github.com/yourorg/rlm-mcp.git
cd rlm-mcp
uv sync --extra dev
# Run tests
uv run pytest
# Or with pip (editable install required for tests)
pip install -e ".[dev]"
pytest
# Type checking
uv run mypy src/
# Linting
uv run ruff check src/
Smoke Test with MCP Inspector
To validate tool discovery and schemas from a real client:
# Start server
uv run rlm-mcp
# In another terminal, use MCP Inspector
npx @anthropic/mcp-inspector
Verify:
- Tool names appear as
rlm.session.create, notrlm_session_create - Schemas match expected input/output structures
truncatedandindex_builtfields appear in responses
License
MIT
References
- Zhang, A. L., Kraska, T., & Khattab, O. (2025). Recursive Language Models. arXiv:2512.24601
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。