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 blazickjp
filesystem
by modelcontextprotocol
Stars★ 2,738★ 85,748
30d uses
Score5877
Official
Categories
AI / LLM ToolsSearchDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit1 mo agothis month

arxiv-mcp-server · Summary

An MCP server for searching and analyzing ArXiv papers with local storage and advanced search capabilities.

filesystem · Summary

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

arxiv-mcp-server · Use cases

  • AI research assistants searching and summarizing academic papers
  • Researchers staying updated on latest publications in their field
  • Automated literature reviews for meta-analyses
  • Content creators curating research summaries for audiences

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

Installing via Smithery

npx -y @smithery/cli install arxiv-mcp-server --client claude

Installing via Claude Desktop (.mcpb)

  1. Download the matching artifact from the [latest release](https://github.com/blazickjp/arxiv-mcp-server/releases/latest)
  2. In Claude Desktop open **Settings → Extensions** (or drag-and-drop)
  3. Click **Install** and set your paper storage directory

Manual Installation

uv tool install arxiv-mcp-server

Claude Desktop Configuration

{
    "mcpServers": {
        "arxiv-mcp-server": {
            "command": "uv",
            "args": [
                "tool",
                "run",
                "arxiv-mcp-server",
                "--storage-path", "/path/to/paper/storage"
            ]
        }
    }
}

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.