MCP Catalogs
Home

ArXiv-Analyst vs everything

Side-by-side comparison to help you pick between these two MCP servers.

ArXiv-Analyst
by devjothish
everything
by modelcontextprotocol
Stars★ 1★ 85,748
30d uses
Score2577
Official
Categories
AI / LLM ToolsProductivityDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit14 mo agothis month

ArXiv-Analyst · Summary

MCP-powered research assistant that searches and analyzes ArXiv papers with linguistic insights.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

ArXiv-Analyst · Use cases

  • Automating literature review for researchers by searching and summarizing relevant papers
  • Extracting linguistic patterns from academic documents for content analysis
  • Providing quick insights into research papers without reading full texts

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-Analyst · Install

Installation

  1. Clone the repository
  2. Build and run the containerized MCP servers:

```bash docker build -t arxiv-server ./arxiv_server docker run -p 8080:8080 arxiv-server

docker build -t docling-server ./docling_server docker run -p 8081:8081 docling-server ```

  1. Start the FastAPI client server
  2. Launch the Streamlit UI application

For Claude Desktop, add to config.json:

{
  "mcpServers": {
    "arxiv-analyst": {
      "command": "python",
      "args": ["-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]
    }
  }
}

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.