MCP Catalogs
Home

filesystem vs Fabric-Analytics-MCP

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

filesystem
by modelcontextprotocol
Fabric-Analytics-MCP
by santhoshravindran7
Stars★ 85,748★ 111
30d uses
Score7746
Official
Categories
File SystemDeveloper ToolsProductivity
Cloud StorageMonitoringDeveloper Tools
LanguageTypeScriptJavaScript
Last committhis month5 mo ago

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

Fabric-Analytics-MCP · Summary

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

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.