kafka-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
kafka-mcp-server by Joel-hanson | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 31 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 12 mo ago | this month |
kafka-mcp-server · Summary
A MCP server enabling Kafka interaction with tools for topic management and message operations.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
kafka-mcp-server · Use cases
- Managing Kafka topics through AI assistants
- Automating topic lifecycle operations
- Monitoring topic configuration and health
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
kafka-mcp-server · Install
Installation
- Clone the repository:
git clone https://github.com/joel-hanson/kafka-mcp-server.git
cd kafka-mcp-server- Setup Python environment:
conda create -n kafka-mcp python=3.10 -y
conda activate kafka-mcp
pip install -r requirements.txt- Configure Claude Desktop:
Add this to your Claude Desktop configuration:
{
"mcpServers": {
"kafka": {
"command": "python",
"args": ["/path/to/server.py"]
}
}
}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