MCP Catalogs
首页

ultimate_mcp_server vs metashape-mcp

并排对比,帮你在这两个 MCP server 之间做选择。

ultimate_mcp_server
by Dicklesworthstone
metashape-mcp
by jenkinsm13
Stars★ 149★ 21
30天用量
综合分8545
官方
分类
AI / LLM 工具浏览器自动化本地文件系统
开发者工具AI / LLM 工具多媒体
实现语言PythonPython
最近提交2 个月前本月

ultimate_mcp_server · 概述

一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。

metashape-mcp · 概述

通过自然语言为Agisoft Metashape摄影测量自动化提供106种工具的MCP服务器。

ultimate_mcp_server · 使用场景

  • 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
  • 跨多个网站进行网页自动化和研究,通过浏览器控制
  • 通过模型间的智能任务分配实现成本优化的 AI 工作流

metashape-mcp · 使用场景

  • 无人机调查自动化处理:导入照片、相机对齐、构建密集点云、生成DEM和正射影像
  • 近距离3D重建:物体扫描、文物数字化、遗产保护
  • 地形和表面建模:地面分类、网格生成、纹理映射
  • 带有地面控制点和标记工作流的摄影测量项目批量处理
  • 在远程服务器或CI流水线中进行无头自动化处理

ultimate_mcp_server · 安装

安装

  1. 克隆仓库:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. 安装依赖:
pip install -e .
  1. 对于 Claude Desktop 集成,添加到 claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. 运行服务器:
python -m ultimate_mcp_server

metashape-mcp · 安装

安装

先决条件

  • Agisoft Metashape Professional 2.3+ (带Python 3.12脚本功能)

步骤

  1. 克隆仓库:
git clone https://github.com/jenkinsm13/metashape-mcp.git
  1. 在Metashape中启动MCP服务器:

- **自动启动(推荐)**:编辑scripts/start_mcp_server.py设置源路径,复制到Metashape的脚本文件夹,然后重启Metashape - **手动启动**:运行工具 > 运行脚本,选择scripts/start_mcp_server.py - **控制台**:打开Python控制台,运行from metashape_mcp.server import start_background; start_background() - **无头模式**:对于远程/CI环境,使用scripts/start_mcp_headless.py

  1. 在Claude Code的Python中安装FastMCP:
python -c "import sys; print(sys.executable)"
pip install "fastmcp>=2.0.0"
  1. 为Claude Code配置stdio代理:
python proxy.py

Claude Desktop配置

{
  "mcpServers": {
    "metashape": {
      "command": "python",
      "args": ["path/to/proxy.py"],
      "env": {
        "METASHAPE_MCP_PORT": "8765"
      }
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。