get_status_cat

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

Get a cat image representing an HTTP status code. Provide the code (e.g., 200, 404, 500). Returns the image URL.

Parameters

NameTypeRequiredDescription
status_codenumberyesHTTP status code (e.g., 200, 404, 500)

Example call

Arguments

{
  "status_code": 200
}

curl

curl -X POST https://gateway.pipeworx.io/httpcat/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_status_cat","arguments":{"status_code":200}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_status_cat', {
  "status_code": 200
});

More examples

{
  "status_code": 404
}

Response shape

Always returns: status_code, description, image_url

FieldTypeDescription
status_codenumberThe HTTP status code requested
descriptionstringHuman-readable description of the status code
image_urlstringURL to the http.cat image for this status code
Full JSON Schema
{
  "type": "object",
  "properties": {
    "status_code": {
      "type": "number",
      "description": "The HTTP status code requested"
    },
    "description": {
      "type": "string",
      "description": "Human-readable description of the status code"
    },
    "image_url": {
      "type": "string",
      "description": "URL to the http.cat image for this status code"
    }
  },
  "required": [
    "status_code",
    "description",
    "image_url"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "httpcat": {
      "url": "https://gateway.pipeworx.io/httpcat/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026