ultimate_mcp_server vs context-mode
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | context-mode by mksglu | |
|---|---|---|
| Stars | ★ 149 | ★ 14,865 |
| 30d uses | — | — |
| Score | 85 | 62 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
context-mode · Summary
MCP server that optimizes context windows for AI agents by sandboxing tool output with 98% reduction.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
context-mode · Use cases
- Optimize context usage when working with large files or multiple documents
- Maintain session continuity across AI coding sessions without losing track of edits
- Reduce token consumption by executing code instead of reading file contents
- Improve AI agent performance by minimizing context overflow
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_servercontext-mode · Install
Installation
Claude Code
/plugin marketplace add mksglu/context-mode
/plugin install context-mode@context-modeGemini CLI
npm install -g context-modeAdd to ~/.gemini/settings.json:
{
"mcpServers": {
"context-mode": {
"command": "context-mode"
}
},
"hooks": {
"BeforeTool": [{
"matcher": "run_shell_command|read_file|read_many_files|grep_search|search_file_content|web_fetch|activate_skill",
"hooks": [{ "type": "command", "command": "context-mode hook gemini-cli beforetool" }]
}],
"AfterTool": [{
"matcher": "",
"hooks": [{ "type": "command", "command": "context-mode hook gemini-cli aftertool" }]
}],
"PreCompress": [{
"matcher": "",
"hooks": [{ "type": "command", "command": "context-mode hook gemini-cli precompress" }]
}],
"SessionStart": [{
"matcher": "",
"hooks": [{ "type": "command", "command": "context-mode hook gemini-cli sessionstart" }]
}]
}
}Manual MCP (for Claude Desktop)
{
"mcpServers": {
"context-mode": {
"command": "npx",
"args": ["-y", "context-mode"]
}
}
}