cat_by_tag

Pack: cataas · Endpoint: https://gateway.pipeworx.io/cataas/mcp

Get a random cat image matching a specific tag (e.g., ‘orange’, ‘cute’, ‘sleepy’). Returns image URL, cat ID, and tags.

Parameters

NameTypeRequiredDescription
tagstringyesTag to filter cats by (e.g. “cute”, “orange”, “grumpy”). Use list_tags to see available tags.

Example call

Arguments

{
  "tag": "cute"
}

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":"cat_by_tag","arguments":{"tag":"cute"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('cat_by_tag', {
  "tag": "cute"
});

More examples

{
  "tag": "orange"
}

Response shape

Always returns: id, url, tags, mimetype, created_at, searched_tag

FieldTypeDescription
idstringUnique identifier for the cat image
urlstringDirect URL to the cat image
tagsarrayArray of tags associated with the cat
mimetypestring | nullMIME type of the image file
created_atstring | nullISO timestamp when cat image was created
searched_tagstringThe tag that was searched for
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"
    },
    "searched_tag": {
      "type": "string",
      "description": "The tag that was searched for"
    }
  },
  "required": [
    "id",
    "url",
    "tags",
    "mimetype",
    "created_at",
    "searched_tag"
  ]
}

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.

Regenerated from source · build May 9, 2026