get_breed
Pack: dogsapi · Endpoint: https://gateway.pipeworx.io/dogsapi/mcp
Get detailed info about a dog breed by ID. Returns characteristics, temperament, origin, size, and health data.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | The breed ID (obtained from list_breeds) |
Example call
Arguments
{
"id": "golden-retriever"
}
curl
curl -X POST https://gateway.pipeworx.io/dogsapi/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_breed","arguments":{"id":"golden-retriever"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_breed', {
"id": "golden-retriever"
});
More examples
{
"id": "labrador-retriever"
}
Response shape
Always returns: id, name, description, life_span_years, male_weight_kg, female_weight_kg, hypoallergenic
| Field | Type | Description |
|---|---|---|
id | string | Unique breed identifier |
name | string | Breed name |
description | string | Breed description |
life_span_years | object | Life span range |
male_weight_kg | object | Male weight range |
female_weight_kg | object | Female weight range |
hypoallergenic | boolean | Whether breed is hypoallergenic |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique breed identifier"
},
"name": {
"type": "string",
"description": "Breed name"
},
"description": {
"type": "string",
"description": "Breed description"
},
"life_span_years": {
"type": "object",
"properties": {
"min": {
"type": "number",
"description": "Minimum lifespan in years"
},
"max": {
"type": "number",
"description": "Maximum lifespan in years"
}
},
"required": [
"min",
"max"
],
"description": "Life span range"
},
"male_weight_kg": {
"type": "object",
"properties": {
"min": {
"type": "number",
"description": "Minimum weight in kg"
},
"max": {
"type": "number",
"description": "Maximum weight in kg"
}
},
"required": [
"min",
"max"
],
"description": "Male weight range"
},
"female_weight_kg": {
"type": "object",
"properties": {
"min": {
"type": "number",
"description": "Minimum weight in kg"
},
"max": {
"type": "number",
"description": "Maximum weight in kg"
}
},
"required": [
"min",
"max"
],
"description": "Female weight range"
},
"hypoallergenic": {
"type": "boolean",
"description": "Whether breed is hypoallergenic"
}
},
"required": [
"id",
"name",
"description",
"life_span_years",
"male_weight_kg",
"female_weight_kg",
"hypoallergenic"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dogsapi": {
"url": "https://gateway.pipeworx.io/dogsapi/mcp"
}
}
}
See Getting Started for client-specific install steps.