arxiv-mcp-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
arxiv-mcp-server by 1Dark134 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 16 | ★ 85,748 |
| 30d uses | — | — |
| Score | 39 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsKnowledge GraphDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
arxiv-mcp-server · Summary
arXiv MCP server enabling AI assistants to search, retrieve, analyze, and summarize academic papers with advanced features.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
arxiv-mcp-server · Use cases
- Researchers conducting literature reviews across academic papers
- Academic institutions tracking research trends and citation patterns
- AI assistants needing to access and summarize arXiv papers with context
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
Installation
Prerequisites
- Linux, macOS, or Windows OS
- Minimum Python/Node versions depending on chosen runtime
- Sufficient disk space for paper data and indices
- Network access for fetching arXiv data
Quick Install
- Download the latest release artifact for your platform from the releases page
- Extract the package to a directory of your choice
- Run the installer or setup script provided in the package
- Follow prompts to configure database paths, API keys, and AI settings
Docker Installation
docker run --rm -it -p 8080:8080 arxiv-mcp-server:latestClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"arxiv": {
"command": "python",
"args": ["-m", "arxiv_mcp.server"],
"env": {}
}
}
}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.