MCP Catalogs
首页

ols4 vs everything

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

ols4
by EBISPOT
everything
by modelcontextprotocol
Stars★ 89★ 85,748
30天用量
综合分4777
官方
分类
知识库 / RAG开发者工具AI / LLM 工具
开发者工具AI / LLM 工具其它
实现语言JavaTypeScript
最近提交本月本月

ols4 · 概述

EMBL-EBI的本体查找服务通过REST API提供生物医学本体的MCP服务器。

everything · 概述

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

ols4 · 使用场景

  • 生物医学研究人员查询本体术语和关系
  • 生物信息学工具开发人员将本体数据集成到应用程序中
  • 数据标准化项目强制执行受控词汇表

everything · 使用场景

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

ols4 · 安装

安装

  1. **Docker Compose(推荐)**:

``bash HOST_UID=$(id -u) HOST_GID=$(id -g) docker compose up ``

  1. **使用Helm的Kubernetes**:

``bash export KUBECONFIG=<K8S_CONFIG> helm install ols4 <OLS4_DIR>/k8chart/ols4 --set imageTag=dev ``

  1. **Claude Desktop配置**:

添加到您的Claude Desktop config.json: ``json { "mcpServers": { "ols": { "command": "curl", "args": ["-s", "https://www.ebi.ac.uk/ols4/api/mcp"] } } } ``

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
对比内容由 README + GitHub 公开数据自动生成,定期更新。