MCP Catalogs
Home

everything vs Fabric-Analytics-MCP

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

everything
by modelcontextprotocol
Fabric-Analytics-MCP
by santhoshravindran7
Stars★ 85,748★ 111
30d uses
Score7746
Official
Categories
Developer ToolsAI / LLM ToolsOther
Cloud StorageMonitoringDeveloper Tools
LanguageTypeScriptJavaScript
Last committhis month5 mo ago

everything · Summary

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

Fabric-Analytics-MCP · Summary

MCP server enabling AI assistants to securely access and analyze Microsoft Fabric Analytics data through authenticated API calls.

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

Fabric-Analytics-MCP · Use cases

  • Automated workspace provisioning and management in Microsoft Fabric
  • Real-time monitoring and analysis of Spark applications running on Fabric
  • Migration of Azure Synapse Analytics workloads to Microsoft Fabric

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

Fabric-Analytics-MCP · Install

Installation

  1. Install the MCP server:
npm install -g mcp-for-microsoft-fabric-analytics
  1. Configure Claude Desktop (add to config.json):
{
  "mcpServers": {
    "fabric-analytics": {
      "command": "node",
      "args": ["path/to/index.js"],
      "cwd": "path/to/project",
      "env": {
        "FABRIC_AUTH_METHOD": "bearer_token",
        "FABRIC_TOKEN": "your_bearer_token_here",
        "FABRIC_WORKSPACE_ID": "your_workspace_id",
        "ENABLE_HEALTH_SERVER": "false"
      }
    }
  }
}
  1. Get your bearer token from Power BI Embed Setup (tokens expire after ~1 hour)
Comparison generated from public README + GitHub signals. Last updated automatically.