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

NameTypeRequiredDescription
breedstringyesThe 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

FieldTypeDescription
breedstringThe requested breed name
foundbooleanWhether the breed was found
image_urlstring | nullURL of the breed image or null if not found
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_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.

Regenerated from source · build May 9, 2026