mcp-engine-public vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-engine-public by maxanatsko | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 237 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | — | TypeScript |
| Last commit | this month | this month |
mcp-engine-public · Summary
MCP server for Power BI model interaction, enabling AI assistants to programmatically query and modify Power BI models.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-engine-public · Use cases
- Automating Power BI model modifications through AI natural language commands
- Running DAX queries to analyze data without leaving the AI conversation
- Testing and validating model changes before deployment
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-engine-public · Install
Installation
- Download the latest release from [GitHub releases](https://github.com/maxanatsko/mcp-engine-public/releases)
- Follow the [installation guide](https://semanticops.dev/getting-started)
Claude Desktop Configuration
Add this to your Claude Desktop configuration:
{
"mcpServers": {
"semanticops": {
"command": "path/to/semanticops-mcp",
"args": []
}
}
}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