arxiv-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
arxiv-mcp-server by anuj0456 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 18 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsKnowledge GraphDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 10 mo ago | this month |
arxiv-mcp-server · Summary
MCP server for arXiv enabling AI assistants to search, retrieve, analyze, and export academic papers.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
arxiv-mcp-server · Use cases
- AI assistants summarizing and explaining recent research papers for non-experts
- Automated literature reviews and trend analysis in specific research fields
- Citation tracking and impact analysis for academic researchers
- Batch processing and organization of research papers for personal libraries
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
arxiv-mcp-server · Install
# Using Poetry (Recommended)
poetry install
# Using pip
pip install mcp httpxFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"arxiv": {
"command": "python",
"args": ["arxiv_mcp_server.py"]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything