ultimate_mcp_server vs metashape-mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | metashape-mcp by jenkinsm13 | |
|---|---|---|
| Stars | ★ 149 | ★ 21 |
| 30d uses | — | — |
| Score | 85 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsAI / LLM ToolsMedia |
| Language | Python | Python |
| Last commit | 2 mo ago | this month |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
metashape-mcp · Summary
MCP server providing 106 tools for Agisoft Metashape photogrammetry automation through natural language.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
metashape-mcp · Use cases
- Automating drone survey processing: import photos, align cameras, build dense clouds, generate DEMs and orthomosaics
- Close-range 3D reconstruction: object scanning, artifact digitization, heritage documentation
- Terrain and surface modeling: ground classification, mesh generation, texture mapping
- Batch processing of photogrammetry projects with GCP and marker workflows
- Headless automated processing on remote servers or CI pipelines
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_servermetashape-mcp · Install
Installation
Prerequisites
- Agisoft Metashape Professional 2.3+ (with Python 3.12 scripting)
Steps
- Clone the repository:
git clone https://github.com/jenkinsm13/metashape-mcp.git- Start the MCP server inside Metashape:
- **Auto-start (recommended)**: Edit scripts/start_mcp_server.py to set the source path, copy to Metashape's scripts folder, and restart Metashape - **Manual**: Run Tools > Run Script and select scripts/start_mcp_server.py - **Console**: Open Python console and run from metashape_mcp.server import start_background; start_background() - **Headless**: Use scripts/start_mcp_headless.py for remote/CI environments
- Install FastMCP in your Claude Code Python:
python -c "import sys; print(sys.executable)"
pip install "fastmcp>=2.0.0"- For Claude Code, configure the stdio proxy:
python proxy.pyClaude Desktop Configuration
{
"mcpServers": {
"metashape": {
"command": "python",
"args": ["path/to/proxy.py"],
"env": {
"METASHAPE_MCP_PORT": "8765"
}
}
}
}