MCP Catalogs
Home

OverleafMCP vs everything

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

OverleafMCP
by mjyoo2
everything
by modelcontextprotocol
Stars★ 128★ 85,748
30d uses
Score4877
Official
Categories
Developer ToolsProductivityAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit1 mo agothis month

OverleafMCP · Summary

An MCP server for AI assistants to read and edit Overleaf LaTeX projects via Git integration.

everything · Summary

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

OverleafMCP · Use cases

  • AI assistants can analyze and edit LaTeX documents in Overleaf projects directly
  • Research collaboration where AI helps structure and format academic papers
  • Automated document generation and management for LaTeX-based publications

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

OverleafMCP · Install

Installation

Quick Start (recommended):

**macOS / Linux**

{
  "mcpServers": {
    "overleaf": {
      "command": "npx",
      "args": ["-y", "@mjyoo2/overleaf-mcp"],
      "env": {
        "OVERLEAF_PROJECT_ID": "YOUR_OVERLEAF_PROJECT_ID",
        "OVERLEAF_GIT_TOKEN": "YOUR_OVERLEAF_GIT_TOKEN"
      }
    }
  }
}

**Windows**

{
  "mcpServers": {
    "overleaf": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@mjyoo2/overleaf-mcp"],
      "env": {
        "OVERLEAF_PROJECT_ID": "YOUR_OVERLEAF_PROJECT_ID",
        "OVERLEAF_GIT_TOKEN": "YOUR_OVERLEAF_GIT_TOKEN"
      }
    }
  }
}

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.