search

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

Find screencaps matching a quote.

Parameters

NameTypeRequiredDescription
showstringnosimpsons | futurama | rickandmorty (default simpsons)
querystringyesQuote / keywords
limitnumberno1-100 (default 20)

Example call

Arguments

{
  "query": "D'oh!"
}

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":"search","arguments":{"query":"D'\''oh!"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search', {
  "query": "D'oh!"
});

More examples

{
  "query": "eat my shorts",
  "show": "simpsons",
  "limit": 10
}

Response shape

Always returns: show, count, results

FieldTypeDescription
showstringThe show queried (simpsons, futurama, or rickandmorty)
countnumberNumber of results returned
resultsarrayArray of matching screencaps
Full JSON Schema
{
  "type": "object",
  "properties": {
    "show": {
      "type": "string",
      "description": "The show queried (simpsons, futurama, or rickandmorty)"
    },
    "count": {
      "type": "number",
      "description": "Number of results returned"
    },
    "results": {
      "type": "array",
      "description": "Array of matching screencaps",
      "items": {
        "type": "object",
        "properties": {
          "Id": {
            "type": "number",
            "description": "Result ID"
          },
          "Episode": {
            "type": "string",
            "description": "Episode key (e.g. S05E15)"
          },
          "Timestamp": {
            "type": "number",
            "description": "Frame timestamp in milliseconds"
          },
          "frame_url": {
            "type": "string",
            "description": "URL to the screencap image"
          },
          "gif_url": {
            "type": "string",
            "description": "URL to a 5-second GIF starting at timestamp"
          }
        }
      }
    }
  },
  "required": [
    "show",
    "count",
    "results"
  ]
}

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