list_breeds
Pack: dogceo · Endpoint: https://gateway.pipeworx.io/dogceo/mcp
List all available dog breeds and sub-breeds. Returns breed names and varieties. Use to explore breeds or validate a breed name before fetching images.
Example call
Arguments
{}
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":"list_breeds","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_breeds', {});
Response shape
Always returns: breeds
| Field | Type | Description |
|---|---|---|
breeds | object | Map of breed names to arrays of sub-breeds |
Full JSON Schema
{
"type": "object",
"properties": {
"breeds": {
"type": "object",
"description": "Map of breed names to arrays of sub-breeds",
"additionalProperties": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"required": [
"breeds"
]
}
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.