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 1Dark134
everything
by modelcontextprotocol
Stars★ 16★ 85,748
30d uses
Score3977
Official
Categories
AI / LLM ToolsKnowledge GraphDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last committhis monththis 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

  1. Download the latest release artifact for your platform from the releases page
  2. Extract the package to a directory of your choice
  3. Run the installer or setup script provided in the package
  4. Follow prompts to configure database paths, API keys, and AI settings

Docker Installation

docker run --rm -it -p 8080:8080 arxiv-mcp-server:latest

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