everything vs wikipedia-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | wikipedia-mcp by Rudra-ravi | |
|---|---|---|
| Stars | ★ 85,748 | ★ 250 |
| 30d uses | — | — |
| Score | 77 | 52 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsSearchKnowledge Graph |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
wikipedia-mcp · Summary
An MCP server providing Wikipedia access with search, article retrieval, summaries, and multi-language support.
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
wikipedia-mcp · Use cases
- Enhance AI responses with verified, up-to-date information from Wikipedia
- Build research assistants that can fact-check against reliable sources
- Create multilingual knowledge bots that access content in different languages
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-everythingwikipedia-mcp · Install
Using pipx (Recommended for Claude Desktop)
pip install pipx
pipx ensurepath
pipx install wikipedia-mcpConfiguration for Claude Desktop
{
"mcpServers": {
"wikipedia": {
"command": "wikipedia-mcp"
}
}
}