arxiv-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
arxiv-mcp-server by blazickjp | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2,738 | ★ 85,748 |
| 30d uses | — | — |
| Score | 58 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsSearchDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
arxiv-mcp-server · Summary
An MCP server for searching and analyzing ArXiv papers with local storage and advanced search capabilities.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
arxiv-mcp-server · Use cases
- AI research assistants searching and summarizing academic papers
- Researchers staying updated on latest publications in their field
- Automated literature reviews for meta-analyses
- Content creators curating research summaries for audiences
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
Installing via Smithery
npx -y @smithery/cli install arxiv-mcp-server --client claudeInstalling via Claude Desktop (.mcpb)
- Download the matching artifact from the [latest release](https://github.com/blazickjp/arxiv-mcp-server/releases/latest)
- In Claude Desktop open **Settings → Extensions** (or drag-and-drop)
- Click **Install** and set your paper storage directory
Manual Installation
uv tool install arxiv-mcp-serverClaude Desktop Configuration
{
"mcpServers": {
"arxiv-mcp-server": {
"command": "uv",
"args": [
"tool",
"run",
"arxiv-mcp-server",
"--storage-path", "/path/to/paper/storage"
]
}
}
}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