ultimate_mcp_server vs reshapr
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | reshapr by reshaprio | |
|---|---|---|
| Stars | ★ 149 | ★ 92 |
| 30d uses | — | — |
| Score | 85 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsAI / LLM ToolsOther |
| Language | Python | Java |
| 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.
reshapr · Summary
reShapr is a no-code MCP server that transforms REST/GraphQL/gRPC APIs into AI-native tools with context control.
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
reshapr · Use cases
- Transforming existing REST APIs into MCP tools for AI agents
- Controlling context size by filtering API responses before sending to LLMs
- Creating MCP interfaces for GraphQL and gRPC services
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_serverreshapr · Install
Install the CLI:
npm install -g @reshapr/reshapr-cliRun the platform locally:
reshapr runConnect to control plane and import API:
reshapr login -s http://localhost:5555 -u admin -p password
reshapr import -u https://raw.githubusercontent.com/open-meteo/open-meteo/refs/heads/main/openapi.yml --backendEndpoint https://api.open-meteo.comConfigure Claude Desktop:
{
"mcpServers": {
"reshapr": {
"command": "npx",
"args": ["@reshapr/reshapr-cli", "serve"]
}
}
}