golemcore-bot vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
golemcore-bot by alexk-dev | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 40 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | CommunicationDeveloper ToolsProductivity | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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"]
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.