microsoft_fabric_mcp vs ultimate_mcp_server
并排对比,帮你在这两个 MCP server 之间做选择。
microsoft_fabric_mcp by Augustab | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 25 | ★ 149 |
| 30天用量 | — | — |
| 综合分 | 41 | 85 |
| 官方 | — | — |
| 分类 | 开发者工具AI / LLM 工具数据库 | AI / LLM 工具浏览器自动化本地文件系统 |
| 实现语言 | Python | Python |
| 最近提交 | 8 个月前 | 2 个月前 |
microsoft_fabric_mcp · 概述
MCP 服务器通过 REST API 提供 Microsoft Fabric 资源的只读访问,包含 25 个工具。
ultimate_mcp_server · 概述
一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。
microsoft_fabric_mcp · 使用场景
- 数据分析师通过自然语言查询探索 Microsoft Fabric 工作区和表架构
- 工程师监控作业实例并识别复杂数据管道中的依赖关系
- BI 开发人员通过理解 Bronze 和 Silver lakehouse 中的架构来创建笔记本
ultimate_mcp_server · 使用场景
- 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
- 跨多个网站进行网页自动化和研究,通过浏览器控制
- 通过模型间的智能任务分配实现成本优化的 AI 工作流
microsoft_fabric_mcp · 安装
安装
- 安装 UV 和 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"- 设置 Azure CLI 身份验证:
az login
az account set --subscription "您的订阅-ID"- 在设置中配置 MCP:
**Cursor MCP 设置:**
"mcp_fabric": {
"command": "uvx",
"args": ["microsoft-fabric-mcp"]
}**Claude Desktop config.json:**
"mcpServers": {
"fabric": {
"command": "uvx",
"args": ["microsoft-fabric-mcp"]
}
}ultimate_mcp_server · 安装
安装
- 克隆仓库:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- 安装依赖:
pip install -e .- 对于 Claude Desktop 集成,添加到 claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- 运行服务器:
python -m ultimate_mcp_server