random_breed_image
Pack: dogceo · Endpoint: https://gateway.pipeworx.io/dogceo/mcp
Get one dog photo for a specific breed (e.g., ‘golden_retriever’, ‘bulldog’). Returns image URL and breed name. Use when you need exactly one photo of a particular breed.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
breed | string | yes | The breed name (e.g. “hound”, “labrador”). Use list_breeds to see valid values. |
Example call
Arguments
{
"breed": "bulldog"
}
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":"random_breed_image","arguments":{"breed":"bulldog"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('random_breed_image', {
"breed": "bulldog"
});
Response shape
Always returns: breed, found, image_url
| Field | Type | Description |
|---|---|---|
breed | string | The requested breed name |
found | boolean | Whether the breed was found |
image_url | string | null | URL of the breed image or null if not found |
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_url": {
"type": [
"string",
"null"
],
"description": "URL of the breed image or null if not found"
},
"hint": {
"type": "string",
"description": "Hint message if breed not found"
}
},
"required": [
"breed",
"found",
"image_url"
]
}
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.