random

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

Random screencap + its caption.

Parameters

NameTypeRequiredDescription
showstringno

Example call

Arguments

{
  "show": "simpsons"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('random', {
  "show": "simpsons"
});

More examples

{
  "show": "futurama"
}

Response shape

Always returns: show, caption, raw

FieldTypeDescription
showstringThe show queried
episodestring | nullEpisode key (e.g. S05E15) or null if unavailable
timestampnumber | nullFrame timestamp in milliseconds or null if unavailable
captionstringCaption text joined from subtitles
frame_urlstring | nullURL to the screencap image or null if episode/timestamp unavailable
rawobjectRaw API response object
Full JSON Schema
{
  "type": "object",
  "properties": {
    "show": {
      "type": "string",
      "description": "The show queried"
    },
    "episode": {
      "type": [
        "string",
        "null"
      ],
      "description": "Episode key (e.g. S05E15) or null if unavailable"
    },
    "timestamp": {
      "type": [
        "number",
        "null"
      ],
      "description": "Frame timestamp in milliseconds or null if unavailable"
    },
    "caption": {
      "type": "string",
      "description": "Caption text joined from subtitles"
    },
    "frame_url": {
      "type": [
        "string",
        "null"
      ],
      "description": "URL to the screencap image or null if episode/timestamp unavailable"
    },
    "raw": {
      "type": "object",
      "description": "Raw API response object"
    }
  },
  "required": [
    "show",
    "caption",
    "raw"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026