BreederOS MCP Server provides AI agents with direct access to a comprehensive dog breeding marketplace. Search available dogs by breed, gender, and price. Get detailed profiles including health records, welfare scores, and pedigree data. Find verified breeders and submit buyer inquiries — all without manual browsing. Perfect for pet-finding agents, veterinary assistants, and breeding consultants. Tools: search_dogs, get_dog_details, list_breeds, get_breeder_profile, submit_inquiry, calculate_compatibility Powered by KOWEX Holding — the same team behind AgentForge.
Calculate genetic compatibility between two dogs. Returns COI (Coefficient of Inbreeding) and risk assessment.
{
"type": "object",
"required": [
"dog_a_id",
"dog_b_id"
],
"properties": {
"dog_a_id": {
"type": "string",
"description": "UUID of first dog"
},
"dog_b_id": {
"type": "string",
"description": "UUID of second dog"
}
}
}Get a breeder's public profile by their custom URL slug. Includes verification status, reputation, and available dogs.
{
"type": "object",
"required": [
"slug"
],
"properties": {
"slug": {
"type": "string",
"description": "Breeder's custom URL slug"
}
}
}Get full details of a specific dog including health records, pedigree, welfare score, photos, and breeder contact info.
{
"type": "object",
"required": [
"dog_id"
],
"properties": {
"dog_id": {
"type": "string",
"description": "UUID of the dog"
}
}
}Get a list of all available dog breeds in the marketplace with the count of dogs per breed.
BreederOS MCP Server provides AI agents with direct access to a comprehensive dog breeding marketplace. Search available dogs by breed, gender, and price. Get detailed profiles including health records, welfare scores, and pedigree data. Find verified breeders and submit buyer inquiries — all without manual browsing. Perfect for pet-finding agents, veterinary assistants, and breeding consultants. Tools: search_dogs, get_dog_details, list_breeds, get_breeder_profile, submit_inquiry, calculate_compatibility Powered by KOWEX Holding — the same team behind AgentForge.
BreederOS — Dog Breeder Platform provides 6 tools including calculate_compatibility, get_breeder_profile, get_dog_details, and 3 more.
BreederOS — Dog Breeder Platform offers a free tier with 100 calls per month. For higher usage, paid plans start at €0/month.
{
"type": "object",
"properties": {}
}Search available dogs in the marketplace by breed, gender, price range. Returns a list of dogs with photos, prices, and breeder info.
{
"type": "object",
"properties": {
"breed": {
"type": "string",
"description": "Dog breed to search for (e.g. golden-retriever, german-shepherd)"
},
"limit": {
"type": "number",
"default": 10,
"description": "Number of results (max 50)"
},
"gender": {
"enum": [
"male",
"female"
],
"type": "string",
"description": "Filter by gender"
},
"max_price": {
"type": "number",
"description": "Maximum price in CZK"
},
"min_price": {
"type": "number",
"description": "Minimum price in CZK"
}
}
}Submit a buyer inquiry for a specific dog. Creates a lead for the breeder. No authentication required.
{
"type": "object",
"required": [
"animal_id",
"buyer_name",
"buyer_email",
"message"
],
"properties": {
"message": {
"type": "string",
"description": "Message to the breeder (5-2000 chars)"
},
"animal_id": {
"type": "string",
"description": "UUID of the dog"
},
"buyer_name": {
"type": "string"
},
"buyer_email": {
"type": "string",
"format": "email"
},
"buyer_phone": {
"type": "string"
}
}
}BreederOS — Dog Breeder Platform is listed under the E-Commerce category in the AgentForge MCP registry.
To connect BreederOS — Dog Breeder Platform, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of BreederOS — Dog Breeder Platform's tools via the Model Context Protocol.