everything vs MediaWiki-MCP-Server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | MediaWiki-MCP-Server by ProfessionalWiki | |
|---|---|---|
| Stars | ★ 85,748 | ★ 93 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Knowledge GraphDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
MediaWiki-MCP-Server · Summary
MCP server connecting AI with MediaWiki wikis through tools and resources for reading and writing content.
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
MediaWiki-MCP-Server · Use cases
- AI assistant retrieving and summarizing wiki articles and page histories
- Automated content management and updates to wikis through AI agents
- Data analysis and reporting from MediaWiki data using AI
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-everythingMediaWiki-MCP-Server · Install
Installation
Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"mediawiki-mcp-server": {
"command": "npx",
"args": [
"@professional-wiki/mediawiki-mcp-server@latest"
],
"env": {
"CONFIG": "path/to/config.json"
}
}
}
}Other Clients
The repository provides specific installation instructions for:
- VS Code
- Cursor
- Windsurf
- Claude Code
- Gemini CLI
Each client has its own specific configuration requirements and setup process.