MCP Server
Maintained
MIT
io.github.egoughnour/massive-context-mcp MCP Server
io.github.egoughnour/massive-context-mcp
What is the io.github.egoughnour/massive-context-mcp MCP server?
Handles 10M+ token contexts with chunking, sub-queries, and local Ollama inference.
How to install io.github.egoughnour/massive-context-mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
RLM_DATA_DIRDirectory for storing context data
OLLAMA_URLURL for Ollama server (default: http://localhost:11434)
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"massive-context-mcp": {
"command": "uvx",
"args": [
"massive-context-mcp"
],
"env": {
"RLM_DATA_DIR": "<YOUR_RLM_DATA_DIR>",
"OLLAMA_URL": "<YOUR_OLLAMA_URL>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"massive-context-mcp": {
"command": "uvx",
"args": [
"massive-context-mcp"
],
"env": {
"RLM_DATA_DIR": "<YOUR_RLM_DATA_DIR>",
"OLLAMA_URL": "<YOUR_OLLAMA_URL>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"massive-context-mcp": {
"command": "uvx",
"args": [
"massive-context-mcp"
],
"env": {
"RLM_DATA_DIR": "<YOUR_RLM_DATA_DIR>",
"OLLAMA_URL": "<YOUR_OLLAMA_URL>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"massive-context-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"massive-context-mcp"
],
"env": {
"RLM_DATA_DIR": "<YOUR_RLM_DATA_DIR>",
"OLLAMA_URL": "<YOUR_OLLAMA_URL>"
}
}
}
}Claude Code
claude mcp add massive-context-mcp --env RLM_DATA_DIR=<YOUR_RLM_DATA_DIR> --env OLLAMA_URL=<YOUR_OLLAMA_URL> -- uvx massive-context-mcpRelated MCP servers
io.github.egoughnour/cowork-history
Maintained
Hybrid search for Cowork history: FTS, Spotlight, and semantic vectors
1
View repository →Python
MIT
io.github.egoughnour/code-firewall-mcp
Maintained
Structural similarity-based code filter. Stops malicious code pattern reaching execution tools.
0
View repository →Python
MIT
Curate-Ipsum
Maintained
Code synthesis through belief revision, mutation testing, and verification
0
View repository →Python
MIT