bird-id-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@bird-id-mcpidentify the bird in /home/user/photo.jpg"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
bird-id-mcp
Bird species identification MCP server. YOLO detection + ConvNeXt classification, outputs Top-5 species with confidence and Chinese names.
Install & Run
# Run directly with uvx (auto-installs)
uvx bird-id-mcp
# Or install from git
pip install git+https://github.com/Hakureirm/bird-id-mcp.git
bird-id-mcpModels are automatically downloaded from HuggingFace on first run (~50MB default).
Related MCP server: MCP Image Recognition Server
Model Selection
Model | Size | Speed (x86 1T) | Accuracy |
S1v2 (default) | 37MB | ~150ms | Good |
ConvNeXt | 144MB | ~600ms | Best |
Default is S1v2 (fast + small). To use ConvNeXt:
BIRD_ID_CLS_MODEL=convnext uvx --from git+https://github.com/Hakureirm/bird-id-mcp.git bird-id-mcpClaude Desktop / Agent Config
{
"mcpServers": {
"bird-id": {
"command": "uvx",
"args": ["bird-id-mcp"]
}
}
}Tools
identify_bird
Identify bird species from an image file path.
Input: {"image_path": "/path/to/bird.jpg", "topk": 5}
Output: {
"detections": 1,
"detection_confidence": 0.92,
"bbox": {"x1": 100, "y1": 50, "x2": 400, "y2": 350},
"results": [
{"rank": 1, "species": "Little Egret", "species_cn": "白鹭", "confidence": 78.5},
{"rank": 2, "species": "Snowy Egret", "species_cn": "雪鹭", "confidence": 12.3},
...
]
}identify_bird_base64
Same as above but accepts base64-encoded image data.
Models
Detection: YOLOv8 bird detector (12MB ONNX)
Classification: S1v2 (37MB, default) or ConvNeXt-Tiny (144MB), 10,753 bird species
Taxonomy: eBird species info — scientific name, family, order, description
Inference: ONNX Runtime CPU only, no GPU required
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceCross-reference your BirdNET-Pi data with eBird observations using natural languageLast updated361MIT
- Flicense-qualityDmaintenanceEnables image analysis and recognition through multiple LLM vision models (Gemini, GPT-4o, Qwen-VL, Doubao) by accepting image URLs or Base64 data and returning text descriptions or answers to questions about the images.Last updated1
- Alicense-qualityDmaintenanceIntegrates the eBird API with Claude to query bird observation data, including recent sightings, rare bird reports, contributor statistics, hotspot locations, and taxonomy information through natural language.Last updated5MIT
- Flicense-qualityDmaintenanceEnables LLMs to identify biological species from images using the Nature Vision API. It returns Latin scientific names and confidence scores for various categories including plants, animals, and fungi.Last updated41
Related MCP Connectors
Analyze images from multiple angles to extract detailed insights or quick summaries. Describe visu…
AI image processing: upscale, resize, crop, compress, convert file format, and generate SEO metadata
AceDataCloud Face Transform MCP: keypoints, beautify, age/gender, swap, cartoon, liveness
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Hakureirm/bird-id-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server