random_cat
Pack: cataas · Endpoint: https://gateway.pipeworx.io/cataas/mcp
Get a random cat image. Returns image URL, cat ID, and associated tags.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/cataas/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"random_cat","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('random_cat', {});
Response shape
Always returns: id, url, tags, mimetype, created_at
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier for the cat image |
url | string | Direct URL to the cat image |
tags | array | Array of tags associated with the cat |
mimetype | string | null | MIME type of the image file |
created_at | string | null | ISO timestamp when cat image was created |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the cat image"
},
"url": {
"type": "string",
"description": "Direct URL to the cat image"
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of tags associated with the cat"
},
"mimetype": {
"type": [
"string",
"null"
],
"description": "MIME type of the image file"
},
"created_at": {
"type": [
"string",
"null"
],
"description": "ISO timestamp when cat image was created"
}
},
"required": [
"id",
"url",
"tags",
"mimetype",
"created_at"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"cataas": {
"url": "https://gateway.pipeworx.io/cataas/mcp"
}
}
}
See Getting Started for client-specific install steps.