MCP Catalogs
首页

everything vs scopus-mcp

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

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

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

scopus-mcp · 概述

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

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

scopus-mcp · 使用场景

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

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

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 公开数据自动生成,定期更新。