MCP Catalogs
Home

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
Score7747
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsKnowledge Graph
LanguageTypeScriptJupyter Notebook
Last committhis monththis 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-everything

sparql-llm · Install

Installation

pip install sparql-llm

Or with uv:

uv add sparql-llm

Claude 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"
		}
	}
}
Comparison generated from public README + GitHub signals. Last updated automatically.