MCP Catalogs
Home

filesystem vs arxiv-latex-mcp

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

filesystem
by modelcontextprotocol
arxiv-latex-mcp
by takashiishida
Stars★ 85,748★ 131
30d uses
Score7748
Official
Categories
File SystemDeveloper ToolsProductivity
AI / LLM ToolsKnowledge GraphDeveloper Tools
LanguageTypeScriptPython
Last committhis monththis month

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

arxiv-latex-mcp · Summary

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

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.