MCP Catalogs
Home

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
Score5877
Official
Categories
AI / LLM ToolsSearchDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit1 mo agothis 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 claude

Installing via Claude Desktop (.mcpb)

  1. Download the matching artifact from the [latest release](https://github.com/blazickjp/arxiv-mcp-server/releases/latest)
  2. In Claude Desktop open **Settings → Extensions** (or drag-and-drop)
  3. Click **Install** and set your paper storage directory

Manual Installation

uv tool install arxiv-mcp-server

Claude 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
Comparison generated from public README + GitHub signals. Last updated automatically.