everything vs WikidataMCP
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | WikidataMCP by wmde | |
|---|---|---|
| Stars | ★ 85,748 | ★ 24 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Knowledge GraphAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
WikidataMCP · Summary
MCP server providing standardized tools to explore and query Wikidata programmatically for AI applications.
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
WikidataMCP · Use cases
- AI agents exploring knowledge relationships in Wikidata
- Fact-checking systems verifying information against Wikidata
- Content enrichment by connecting external data to Wikidata entities
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-everythingWikidataMCP · Install
Installation
- Run locally:
uv run python main.py- Using Docker:
docker compose up --build- Connect to the public server:
- Server: https://wd-mcp.wmcloud.org/
- MCP endpoint: https://wd-mcp.wmcloud.org/mcp
Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"wikidata": {
"command": "curl",
"args": ["https://wd-mcp.wmcloud.org/mcp"]
}
}
}