MCP Catalogs
首页

everything vs sparql-llm

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

everything
by modelcontextprotocol
sparql-llm
by sib-swiss
Stars★ 85,748★ 108
30天用量
综合分7747
官方
分类
开发者工具AI / LLM 工具其它
AI / LLM 工具开发者工具知识库 / RAG
实现语言TypeScriptJupyter Notebook
最近提交本月本月

everything · 概述

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

sparql-llm · 概述

MCP服务器帮助LLM生成和验证生物知识图谱的SPARQL查询。

everything · 使用场景

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

sparql-llm · 使用场景

  • 帮助研究人员编写SPARQL查询从知识图谱中检索生物数据
  • 在执行前验证针对生物端点的SPARQL查询
  • 使LLM助手能够理解生物数据库模式和查询结构

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

sparql-llm · 安装

安装

pip install sparql-llm

或使用uv

uv add sparql-llm

Claude Desktop配置

将以下内容添加到您的mcp.json文件中:

{
  "servers": {
    "expasy-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "sparql-llm"
      ]
    }
  }
}

使用HTTP服务器

公共HTTP服务器地址:https://chat.expasy.org/mcp

在您的VSCode mcp.json中:

{
	"servers": {
		"expasy-mcp-http": {
			"url": "https://chat.expasy.org/mcp/",
			"type": "http"
		}
	}
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。