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 | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsDatabase | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 8 mo ago | this 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
- 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"- Set up Azure CLI authentication:
az login
az account set --subscription "Your-Subscription-ID"- 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