keycloak-model-context-protocol vs everything
Side-by-side comparison to help you pick between these two MCP servers.
keycloak-model-context-protocol by ChristophEnglisch | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 42 | ★ 85,748 |
| 30d uses | — | — |
| Score | 39 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 15 mo ago | this month |
keycloak-model-context-protocol · Summary
MCP server for Keycloak administration that enables AI-powered user and realm management through Claude Desktop.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
keycloak-model-context-protocol · Use cases
- Automate Keycloak user provisioning for new employees
- Enable AI assistants to manage user access across different realms
- Simplify administrative tasks through natural language commands to an AI
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
keycloak-model-context-protocol · Install
Installing via NPM (Recommended)
The server is available as an NPM package:
# Direct usage with npx
npx -y keycloak-model-context-protocol
# Or global installation
npm install -g keycloak-model-context-protocolConfiguration for Claude Desktop
Configure the server in your Claude Desktop configuration file:
{
"mcpServers": {
"keycloak": {
"command": "npx",
"args": ["-y", "keycloak-model-context-protocol"],
"env": {
"KEYCLOAK_URL": "http://localhost:8080",
"KEYCLOAK_ADMIN": "admin",
"KEYCLOAK_ADMIN_PASSWORD": "admin"
}
}
}
}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