everything vs mirobody
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mirobody by thetahealth | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1,042 |
| 30d uses | — | — |
| Score | 77 | 53 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolshealthProductivity |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mirobody · Summary
A personal data platform bridging health, finance data with AI via MCP servers and Claude Agent Skills.
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
mirobody · Use cases
- Personal health analysis with data from multiple wearables and Apple Health
- Finance management by creating custom AI tools for personal financial data
- Building domain-specific agents that leverage personal data via MCP tools
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-everythingmirobody · Install
Quick Start with Docker
git clone https://github.com/thetahealth/mirobody.git
cd mirobody
./deploy.shThis will set up a complete environment with Postgres, Redis, and Mirobody.
Use as MCP Server
Set MCP_PUBLIC_URL to expose your MCP server over HTTPS for remote access.
Claude Desktop Integration
Add to Claude Desktop configuration:
{
"mcpServers": {
"mirobody": {
"command": "python",
"args": ["-m", "mirobody.mcp.server"],
"env": {"MCP_CONFIG_PATH": "/path/to/config"}
}
}
}