breed_images

Pack: dogceo · Endpoint: https://gateway.pipeworx.io/dogceo/mcp

Get multiple dog photos for a specific breed (e.g., ‘labrador’, ‘poodle’). Returns array of image URLs. Use when you need a gallery of one breed.

Parameters

NameTypeRequiredDescription
breedstringyesThe breed name (e.g. “hound”, “labrador”). Use list_breeds to see valid values.
countnumbernoNumber of images to return. Defaults to 3.

Example call

Arguments

{
  "breed": "labrador"
}

curl

curl -X POST https://gateway.pipeworx.io/dogceo/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"breed_images","arguments":{"breed":"labrador"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('breed_images', {
  "breed": "labrador"
});

More examples

{
  "breed": "golden_retriever",
  "count": 5
}

Response shape

Always returns: breed, found, image_urls

FieldTypeDescription
breedstringThe requested breed name
foundbooleanWhether the breed was found
image_urlsarrayArray of image URLs for the breed
hintstringHint message if breed not found
Full JSON Schema
{
  "type": "object",
  "properties": {
    "breed": {
      "type": "string",
      "description": "The requested breed name"
    },
    "found": {
      "type": "boolean",
      "description": "Whether the breed was found"
    },
    "image_urls": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Array of image URLs for the breed"
    },
    "hint": {
      "type": "string",
      "description": "Hint message if breed not found"
    }
  },
  "required": [
    "breed",
    "found",
    "image_urls"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "dogceo": {
      "url": "https://gateway.pipeworx.io/dogceo/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026