MCP Catalogs
Home

everything vs arxiv-latex-mcp

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

everything
by modelcontextprotocol
arxiv-latex-mcp
by takashiishida
Stars★ 85,748★ 131
30d uses
Score7748
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsKnowledge GraphDeveloper Tools
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

arxiv-latex-mcp · Summary

MCP server enabling LLMs to access and process arXiv papers via original LaTeX source for better math handling.

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-latex-mcp · Use cases

  • Analyzing mathematical papers where equation rendering is critical
  • Researching complex scientific topics involving technical notation
  • Summarizing or translating content from academic papers with precision

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

arxiv-latex-mcp · Install

Installation

Claude Desktop

  1. Download the .mcpb file from [releases](https://github.com/takashiishida/arxiv-latex-mcp/releases/)
  2. Double-click on the .mcpb file to install via Desktop Extensions

Other MCP Clients

Add this configuration to your MCP config file:

{
  "mcpServers": {
    "arxiv-latex-mcp": {
      "command": "uvx",
      "args": ["arxiv-latex-mcp"]
    }
  }
}

Manual Installation

Install with pip: pip install arxiv-latex-mcp Then run: arxiv-latex-mcp

Comparison generated from public README + GitHub signals. Last updated automatically.