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 | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Cloud StorageMonitoringDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 5 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
- Install the MCP server:
npm install -g mcp-for-microsoft-fabric-analytics- 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"
}
}
}
}- Get your bearer token from Power BI Embed Setup (tokens expire after ~1 hour)