mcp.mbt vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp.mbt by colmugx | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 34 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | MoonBit | TypeScript |
| Last commit | 3 mo ago | this month |
mcp.mbt · Summary
Type-safe MCP server implementation in MoonBit with dual transport support (STDIO/HTTP).
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp.mbt · Use cases
- Building custom AI tools for Claude Desktop with MoonBit's type safety
- Creating MCP servers that need to serve both desktop and web clients
- Developing production-ready MCP servers with structured error handling
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
mcp.mbt · Install
moon add colmugx/mcpFor Claude Desktop integration, add to claude_desktop_config.json:
{
"mcpServers": {
"my-server": {
"command": "moon",
"args": ["run", "path/to/your_server.mbt"]
}
}
}To run the example server:
moon run @examples/cmd/maineverything · 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