golemcore-bot vs everything
Side-by-side comparison to help you pick between these two MCP servers.
golemcore-bot by alexk-dev | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 40 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | CommunicationDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Java | TypeScript |
| Last commit | this month | this month |
golemcore-bot · Summary
GolemCore Bot is an agent platform with MCP integration, enabling channel-connected agents with plugins and memory.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
golemcore-bot · Use cases
- Building chatbots for multiple channels (Telegram, web dashboard) with memory and delayed follow-ups
- Extending agent capabilities through plugins and MCP server integrations
- Creating inspectable AI agents with traceable execution and Hive-connected control flows
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
golemcore-bot · Install
Docker Installation
docker pull ghcr.io/alexk-dev/golemcore-bot:latest
docker run -d \
--name golemcore-bot \
--shm-size=256m \
--cap-add=SYS_ADMIN \
-e STORAGE_PATH=/app/workspace \
-e TOOLS_WORKSPACE=/app/sandbox \
-v golemcore-bot-data:/app/workspace \
-v golemcore-bot-sandbox:/app/sandbox \
-p 8080:8080 \
--restart unless-stopped \
ghcr.io/alexk-dev/golemcore-bot:latestOpen http://localhost:8080/dashboard and sign in with the temporary admin password from logs.
Claude Desktop Integration
Add to Claude Desktop configuration:
{
"mcpServers": {
"golemcore": {
"command": "docker",
"args": ["run", "--rm", "-i", "ghcr.io/alexk-dev/golemcore-bot:latest"]
}
}
}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