random_image
Pack: dogceo · Endpoint: https://gateway.pipeworx.io/dogceo/mcp
Get a random dog photo. Returns image URL and breed name. Use when you need any dog picture without a specific breed preference.
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":"random_image","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('random_image', {});
Response shape
Always returns: image_url
| Field | Type | Description |
|---|---|---|
image_url | string | URL of a random dog image |
Full JSON Schema
{
"type": "object",
"properties": {
"image_url": {
"type": "string",
"description": "URL of a random dog image"
}
},
"required": [
"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.