arxiv-mcp-server vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
arxiv-mcp-server by 1Dark134 | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 16 | ★ 149 |
| 30d uses | — | — |
| Score | 39 | 85 |
| Official | — | — |
| Categories | AI / LLM ToolsKnowledge GraphDeveloper Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | Python | Python |
| Last commit | this month | 2 mo ago |
arxiv-mcp-server · Summary
arXiv MCP server enabling AI assistants to search, retrieve, analyze, and summarize academic papers with advanced features.
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.
arxiv-mcp-server · Use cases
- Researchers conducting literature reviews across academic papers
- Academic institutions tracking research trends and citation patterns
- AI assistants needing to access and summarize arXiv papers with context
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
arxiv-mcp-server · Install
Installation
Prerequisites
- Linux, macOS, or Windows OS
- Minimum Python/Node versions depending on chosen runtime
- Sufficient disk space for paper data and indices
- Network access for fetching arXiv data
Quick Install
- Download the latest release artifact for your platform from the releases page
- Extract the package to a directory of your choice
- Run the installer or setup script provided in the package
- Follow prompts to configure database paths, API keys, and AI settings
Docker Installation
docker run --rm -it -p 8080:8080 arxiv-mcp-server:latestClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"arxiv": {
"command": "python",
"args": ["-m", "arxiv_mcp.server"],
"env": {}
}
}
}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