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
| Name | Type | Required | Description |
|---|---|---|---|
breed | string | yes | The breed name (e.g. “hound”, “labrador”). Use list_breeds to see valid values. |
count | number | no | Number 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
| Field | Type | Description |
|---|---|---|
breed | string | The requested breed name |
found | boolean | Whether the breed was found |
image_urls | array | Array of image URLs for the breed |
hint | string | Hint 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.