Install
$ agentstack add mcp-gongrzhe-yolo-mcp-server ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
YOLO MCP Service
A powerful YOLO (You Only Look Once) computer vision service that integrates with Claude AI through Model Context Protocol (MCP). This service enables Claude to perform object detection, segmentation, classification, and real-time camera analysis using state-of-the-art YOLO models.
Features
- Object detection, segmentation, classification, and pose estimation
- Real-time camera integration for live object detection
- Support for model training, validation, and export
- Comprehensive image analysis combining multiple models
- Support for both file paths and base64-encoded images
- Seamless integration with Claude AI
Setup Instructions
Prerequisites
- Python 3.10 or higher
- Git (optional, for cloning the repository)
Environment Setup
- Create a directory for the project and navigate to it:
``bash mkdir yolo-mcp-service cd yolo-mcp-service ``
- Download the project files or clone from repository:
``bash # If you have the files, copy them to this directory # If using git: git clone https://github.com/GongRzhe/YOLO-MCP-Server.git . ``
- Create a virtual environment:
```bash # On Windows python -m venv .venv
# On macOS/Linux python3 -m venv .venv ```
- Activate the virtual environment:
```bash # On Windows .venv\Scripts\activate
# On macOS/Linux source .venv/bin/activate ```
- Run the setup script:
``bash python setup.py ``
The setup script will:
- Check your Python version
- Create a virtual environment (if not already created)
- Install required dependencies
- Generate an MCP configuration file (mcp-config.json)
- Output configuration information for different MCP clients including Claude
- Note the output from the setup script, which will look similar to:
``` MCP configuration has been written to: /path/to/mcp-config.json
MCP configuration for Cursor:
/path/to/.venv/bin/python /path/to/server.py
MCP configuration for Windsurf/Claude Desktop: { "mcpServers": { "yolo-service": { "command": "/path/to/.venv/bin/python", "args": [ "/path/to/server.py" ], "env": { "PYTHONPATH": "/path/to" } } } }
To use with Claude Desktop, merge this configuration into: /path/to/claudedesktopconfig.json ```
Downloading YOLO Models
Before using the service, you need to download the YOLO models. The service looks for models in the following directories:
- The current directory where the service is running
- A
modelssubdirectory - Any other directory configured in the
CONFIG["model_dirs"]variable in server.py
Create a models directory and download some common models:
# Create models directory
mkdir models
# Download YOLOv8n for basic object detection
curl -L https://github.com/ultralytics/assets/releases/download/v0.0.0/yolov8n.pt -o models/yolov8n.pt
# Download YOLOv8n-seg for segmentation
curl -L https://github.com/ultralytics/assets/releases/download/v0.0.0/yolov8n-seg.pt -o models/yolov8n-seg.pt
# Download YOLOv8n-cls for classification
curl -L https://github.com/ultralytics/assets/releases/download/v0.0.0/yolov8n-cls.pt -o models/yolov8n-cls.pt
# Download YOLOv8n-pose for pose estimation
curl -L https://github.com/ultralytics/assets/releases/download/v0.0.0/yolov8n-pose.pt -o models/yolov8n-pose.pt
For Windows PowerShell users:
# Create models directory
mkdir models
# Download models using Invoke-WebRequest
Invoke-WebRequest -Uri "https://github.com/ultralytics/assets/releases/download/v0.0.0/yolov8n.pt" -OutFile "models/yolov8n.pt"
Invoke-WebRequest -Uri "https://github.com/ultralytics/assets/releases/download/v0.0.0/yolov8n-seg.pt" -OutFile "models/yolov8n-seg.pt"
Invoke-WebRequest -Uri "https://github.com/ultralytics/assets/releases/download/v0.0.0/yolov8n-cls.pt" -OutFile "models/yolov8n-cls.pt"
Invoke-WebRequest -Uri "https://github.com/ultralytics/assets/releases/download/v0.0.0/yolov8n-pose.pt" -OutFile "models/yolov8n-pose.pt"
Configuring Claude
To use this service with Claude:
- For Claude web: Set up the service on your local machine and use the configuration provided by the setup script in your MCP client.
- For Claude Desktop:
- Run the setup script and note the configuration output
- Locate your Claude Desktop configuration file (the path is provided in the setup script output)
- Add or merge the configuration into your Claude Desktop configuration file
- Restart Claude Desktop
Using YOLO Tools in Claude
1. First Check Available Models
Always check which models are available on your system first:
I'd like to use the YOLO tools. Can you first check which models are available on my system?
2. Detecting Objects in an Image
For analyzing an image file on your computer:
Can you analyze this image file for objects?
/path/to/your/image.jpg
0.3
You can also specify a different model:
Can you analyze this image using a different model?
/path/to/your/image.jpg
yolov8n.pt
0.4
3. Running Comprehensive Image Analysis
For more detailed analysis that combines object detection, classification, and more:
Can you perform a comprehensive analysis on this image?
/path/to/your/image.jpg
0.3
4. Image Segmentation
For identifying object boundaries and creating segmentation masks:
Can you perform image segmentation on this photo?
/path/to/your/image.jpg
true
yolov8n-seg.pt
5. Image Classification
For classifying the entire image content:
What does this image show? Can you classify it?
/path/to/your/image.jpg
true
yolov8n-cls.pt
5
6. Using Your Computer's Camera
Start real-time object detection using your computer's camera:
Can you turn on my camera and detect objects in real-time?
yolov8n.pt
0.3
Get the latest camera detections:
What are you seeing through my camera right now?
Stop the camera when finished:
Please turn off the camera.
7. Advanced Model Operations
Training a Custom Model
I want to train a custom object detection model on my dataset.
/path/to/your/dataset
yolov8n.pt
50
Validating a Model
Can you validate the performance of my model on a test dataset?
/path/to/your/trained/model.pt
/path/to/validation/dataset
Exporting a Model to Different Formats
I need to export my YOLO model to ONNX format.
/path/to/your/model.pt
onnx
8. Testing Connection
Check if the YOLO service is running correctly:
Is the YOLO service running correctly?
Troubleshooting
Camera Issues
If the camera doesn't work, try different camera IDs:
1
Model Not Found
If a model is not found, make sure you've downloaded it to one of the configured directories:
Performance Issues
For better performance with limited resources, use the smaller models (e.g., yolov8n.pt instead of yolov8x.pt)
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: GongRzhe
- Source: GongRzhe/YOLO-MCP-Server
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.