MCP Catalogs
Home

ArXiv-Analyst vs filesystem

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

ArXiv-Analyst
by devjothish
filesystem
by modelcontextprotocol
Stars★ 1★ 85,748
30d uses
Score2577
Official
Categories
AI / LLM ToolsProductivityDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit14 mo agothis month

ArXiv-Analyst · Summary

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

filesystem · Summary

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

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

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-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"]
    }
  }
}

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.