MCP Catalogs
首页

filesystem vs scopus-mcp

并排对比,帮你在这两个 MCP server 之间做选择。

filesystem
by modelcontextprotocol
scopus-mcp
by qwe4559999
Stars★ 85,748★ 25
30天用量
综合分7743
官方
分类
本地文件系统开发者工具效率工具
AI / LLM 工具开发者工具知识库 / RAG
实现语言TypeScriptPython
最近提交本月4 个月前

filesystem · 概述

功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。

scopus-mcp · 概述

一个MCP服务器,连接AI助手与爱思唯尔Scopus进行学术论文搜索与分析。

filesystem · 使用场景

  • 使 AI 模型能够读取和写入项目文件进行开发
  • 允许 Claude 或其他 MCP 客户端浏览和分析代码库
  • 为内容生成提供对特定目录的安全沙盒访问

scopus-mcp · 使用场景

  • 学术研究人员可以搜索和分析与其领域相关的科学论文
  • AI助手可以提供学术论文的综合摘要和分析
  • 学生和研究人员可以追踪作者发表历史和研究影响力

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 中安装。

scopus-mcp · 安装

安装

快速设置(使用uv)

  1. 安装uv包管理器

- Windows: powershell -c "irm https://astral.sh/uv/install.ps1 | iex" - macOS/Linux: curl -LsSf https://astral.sh/uv/install.sh | sh

  1. 从[爱思唯尔开发者门户](https://dev.elsevier.com/)获取API密钥
  2. 在Claude Desktop中配置:
{
  "mcpServers": {
    "scopus-assistant": {
      "command": "uvx",
      "args": [
        "scopus-mcp"
      ],
      "env": {
        "SCOPUS_API_KEY": "您的API密钥"
      }
    }
  }
}

手动设置

  1. 安装Python 3.10+
  2. 安装依赖:pip install .
  3. 创建包含API密钥的config.json文件
  4. 将MCP_tool_config.json导入您的MCP客户端
对比内容由 README + GitHub 公开数据自动生成,定期更新。