everything vs sparql-llm
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | sparql-llm by sib-swiss | |
|---|---|---|
| Stars | ★ 85,748 | ★ 108 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsKnowledge Graph |
| Language | TypeScript | Jupyter Notebook |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
sparql-llm · Summary
MCP server that helps LLMs generate and validate SPARQL queries for biological knowledge graphs.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
sparql-llm · Use cases
- Helping researchers write SPARQL queries to retrieve biological data from knowledge graphs
- Validating SPARQL queries before execution against biological endpoints
- Enabling LLM assistants to understand biological database schemas and query structures
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingsparql-llm · Install
Installation
pip install sparql-llmOr with uv:
uv add sparql-llmClaude Desktop Configuration
Add this to your mcp.json file:
{
"servers": {
"expasy-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"sparql-llm"
]
}
}
}Using HTTP Server
The public HTTP server is available at: https://chat.expasy.org/mcp
In your VSCode mcp.json:
{
"servers": {
"expasy-mcp-http": {
"url": "https://chat.expasy.org/mcp/",
"type": "http"
}
}
}