2 months ago
MCP server for querying 346 dog breeds, comparing breeds side-by-side, and getting top-ranked dog subscription box data. Free API key at bestdogbox.com/developers
Overview
Features
- 🐕 Search and filter 346 dog breeds by name, size, or AKC group
- 📊 Get detailed breed info: weight, height, lifespan, temperament, grooming needs
- ⚖️ Compare two breeds side-by-side
- 📦 Get top-ranked dog subscription boxes with composite scores
Setup
- Get a free API key at https://bestdogbox.com/developers
- Add the server config to your editor (Cursor, Claude Desktop, Windsurf)
- Set your BESTDOGBOX_API_KEY in the env
Example Prompts
- "What are the best dog breeds for apartments?"
- "Compare Golden Retriever vs Labrador"
- "Show me small hypoallergenic breeds"
- "What are the top dog subscription boxes?"
Links
- API Docs: https://bestdogbox.com/developers
- npm SDK: https://www.npmjs.com/package/bestdogbox
- Website: https://bestdogbox.com
Server Config
{
"mcpServers": {
"bestdogbox": {
"command": "npx",
"args": [
"-y",
"@bestdogbox/mcp-server"
],
"env": {
"BESTDOGBOX_API_KEY": "<YOUR_API_KEY>"
}
}
}
}