MCP Catalogs
Home

arxiv-mcp-server vs filesystem

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

arxiv-mcp-server
by anuj0456
filesystem
by modelcontextprotocol
Stars★ 18★ 85,748
30d uses
Score4077
Official
Categories
AI / LLM ToolsKnowledge GraphDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit10 mo agothis month

arxiv-mcp-server · Summary

MCP server for arXiv enabling AI assistants to search, retrieve, analyze, and export academic papers.

filesystem · Summary

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

arxiv-mcp-server · Use cases

  • AI assistants summarizing and explaining recent research papers for non-experts
  • Automated literature reviews and trend analysis in specific research fields
  • Citation tracking and impact analysis for academic researchers
  • Batch processing and organization of research papers for personal libraries

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-mcp-server · Install

# Using Poetry (Recommended)
poetry install

# Using pip
pip install mcp httpx

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "arxiv": {
      "command": "python",
      "args": ["arxiv_mcp_server.py"]
    }
  }
}

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.

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