jinaai-mcp-server vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
jinaai-mcp-server by cyanheads | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 0 | ★ 149 |
| 30d uses | — | — |
| Score | 33 | 85 |
| Official | — | — |
| Categories | Web ScrapingAI / LLM ToolsDeveloper Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | 9 mo ago | 2 mo ago |
jinaai-mcp-server · Summary
A production-ready MCP server that enables AI systems to read and extract clean content from webpages using the Jina AI Reader API.
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.
jinaai-mcp-server · Use cases
- Automating research by extracting content from multiple articles and documentation sources
- Enabling AI assistants to access real-time web information for up-to-date responses
- Integrating web content processing into AI workflows without leaving the host application
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
jinaai-mcp-server · Install
Prerequisites
- Node.js (>=18.0.0)
- npm
Installation
Using MCP Client Settings
Add the following to your MCP client's configuration file:
{
"mcpServers": {
"jinaai-mcp-server": {
"command": "npx",
"args": ["@cyanheads/jinaai-mcp-server"],
"env": {
"MCP_TRANSPORT_TYPE": "http",
"MCP_HTTP_PORT": "3018",
"JINA_API_KEY": "YOUR_JINA_API_KEY_HERE"
}
}
}
}From Source
- Clone the repository:
``bash git clone https://github.com/cyanheads/jinaai-mcp-server.git cd jinaai-mcp-server ``
- Install dependencies:
``bash npm install ``
- Build the project:
``bash npm run build ``
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