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

NameTypeRequiredDescription
idstringyesThe 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

FieldTypeDescription
idstringUnique breed identifier
namestringBreed name
descriptionstringBreed description
life_span_yearsobjectLife span range
male_weight_kgobjectMale weight range
female_weight_kgobjectFemale weight range
hypoallergenicbooleanWhether 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.

Regenerated from source · build May 9, 2026