arxiv-mcp-server vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
arxiv-mcp-server by 1Dark134 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 16 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 39 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具知识库 / RAG开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
arxiv-mcp-server · 概述
arXiv MCP 服务器,让 AI 助手能够搜索、检索、分析和总结学术论文,具备高级功能。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
arxiv-mcp-server · 使用场景
- 研究人员进行跨学术论文的文献综述
- 学术机构跟踪研究趋势和引用模式
- 需要访问和总结带上下文的 arXiv 论文的 AI 助手
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
arxiv-mcp-server · 安装
安装
前置条件
- Linux、macOS 或 Windows 操作系统
- 根据选择的运行时所需的最低 Python/Node 版本
- 存储论文数据和索引的足够磁盘空间
- 用于获取 arXiv 数据的网络访问
快速安装
- 从发布页面下载适用于您平台的最新发布工件
- 将包解压缩到您选择的目录
- 运行包中提供的安装程序或设置脚本
- 按照提示配置数据库路径、API 密钥和 AI 设置
Docker 安装
docker run --rm -it -p 8080:8080 arxiv-mcp-server:latestClaude Desktop 配置
添加到 Claude Desktop config.json:
{
"mcpServers": {
"arxiv": {
"command": "python",
"args": ["-m", "arxiv_mcp.server"],
"env": {}
}
}
}filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 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 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。