random
Pack: frinkiac · Endpoint: https://gateway.pipeworx.io/frinkiac/mcp
Random screencap + its caption.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
show | string | no |
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
| Field | Type | Description |
|---|---|---|
show | string | The show queried |
episode | string | null | Episode key (e.g. S05E15) or null if unavailable |
timestamp | number | null | Frame timestamp in milliseconds or null if unavailable |
caption | string | Caption text joined from subtitles |
frame_url | string | null | URL to the screencap image or null if episode/timestamp unavailable |
raw | object | Raw 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.