MCP Catalogs
Home

microsoft_fabric_mcp vs everything

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

microsoft_fabric_mcp
by Augustab
everything
by modelcontextprotocol
Stars★ 25★ 85,748
30d uses
Score4177
Official
Categories
Developer ToolsAI / LLM ToolsDatabase
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit8 mo agothis month

microsoft_fabric_mcp · Summary

MCP server providing read-only access to Microsoft Fabric resources via its REST API with 25 tools.

everything · Summary

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

microsoft_fabric_mcp · Use cases

  • Data analysts exploring Microsoft Fabric workspaces and table schemas through natural language queries
  • Engineers monitoring job instances and identifying dependencies in complex data pipelines
  • BI developers creating notebooks by understanding schemas across Bronze and Silver lakehouses

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

microsoft_fabric_mcp · Install

Installation

  1. Install UV and Azure CLI:
# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh

# Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
  1. Set up Azure CLI authentication:
az login
az account set --subscription "Your-Subscription-ID"
  1. Configure MCP in your settings:

**Cursor MCP settings:**

"mcp_fabric": {
  "command": "uvx",
  "args": ["microsoft-fabric-mcp"]
}

**Claude Desktop config.json:**

"mcpServers": {
  "fabric": {
    "command": "uvx",
    "args": ["microsoft-fabric-mcp"]
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.