MCP Catalogs
Home

everything vs powerbi-mcp

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
powerbi-mcp
by sulaiman013
Stars★ 85,748★ 111
30d uses
Score7748
Official
Categories
Developer ToolsAI / LLM ToolsOther
DatabaseDeveloper ToolsAI / LLM Tools
LanguageTypeScriptPython
Last committhis month6 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

powerbi-mcp · Summary

An enterprise-grade MCP server for Power BI that enables AI assistants to interact with datasets via natural language queries, supporting both desktop and cloud environments.

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

powerbi-mcp · Use cases

  • Natural language data querying for business intelligence analysts
  • Automated Power BI model refactoring and maintenance
  • Row-level security testing and validation during development

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

powerbi-mcp · Install

# Install via pip
pip install powerbi-mcp

# Configure Claude Desktop
{
  "mcpServers": {
    "powerbi": {
      "command": "python",
      "args": ["-m", "powerbi_mcp"],
      "env": {
        "POWERBI_MCP_WORKSPACE": "your_workspace_path"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.