arxiv-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
arxiv-mcp-server by 1Dark134 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 16 | ★ 85,748 |
| 30d uses | — | — |
| Score | 39 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsKnowledge GraphDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
arxiv-mcp-server · Summary
arXiv MCP server enabling AI assistants to search, retrieve, analyze, and summarize academic papers with advanced features.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
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": {}
}
}
}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