Dog CEO

live Animals

Random dog images by breed from the Dog CEO API

4 tools
0ms auth
free tier 50 calls/day

Tools

random_image

Get a random dog image URL from any breed.

No parameters required.

Try it
list_breeds

List all dog breeds and their sub-breeds.

No parameters required.

Try it
breed_images required: breed

Get multiple random dog images for a specific breed.

Parameters
Name Type Description
breed req string The breed name (e.g. "hound", "labrador"). Use list_breeds to see valid values.
count opt number Number of images to return. Defaults to 3.
Try it
random_breed_image required: breed

Get a single random dog image for a specific breed.

Parameters
Name Type Description
breed req string The breed name (e.g. "hound", "labrador"). Use list_breeds to see valid values.
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/dogceo/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/dogceo/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"random_image","arguments":{}}}'