redm-mcp-public vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
redm-mcp-public by Cmoen11 | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 1 | ★ 149 |
| 30d uses | — | — |
| Score | 37 | 85 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsBrowser AutomationFile System |
| Language | — | Python |
| Last commit | 1 mo ago | 2 mo ago |
redm-mcp-public · Summary
MCP server providing RedM/RDR3 native lookups, semantic search and framework documentation.
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.
redm-mcp-public · Use cases
- Help developers understand native function calls like Citizen.InvokeNative(0x09C28F828EE674FA)
- Search for functionality by behavior rather than exact names (e.g., 'teleport player')
- Browse and query RedM/RDR3 framework documentation for VORP, RSGCore, and oxmysql
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
redm-mcp-public · Install
Installation
HTTP Transport
Connect to the hosted HTTP endpoint: https://redm-mcp.fivem.no/mcp
VS Code / Cursor
Click the install badges in the README for one-click setup.
Claude Code
claude mcp add --transport http redm-mcp https://redm-mcp.fivem.no/mcpClaude Desktop
{
"mcpServers": {
"redm-mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://redm-mcp.fivem.no/mcp"
]
}
}
}VS Code (Copilot / Continue)
{
"servers": {
"redm-mcp": {
"type": "http",
"url": "https://redm-mcp.fivem.no/mcp"
}
}
}Zed
{
"context_servers": {
"redm-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"mcp-remote",
"https://redm-mcp.fivem.no/mcp"
]
}
}
}
}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_server