random

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

Return a random food dish image URL from the Foodish API, drawn from any category (biryani, burger, pizza, pasta, dessert, etc.).

Example call

Arguments

{}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('random', {});

Response shape

FieldTypeDescription
imagestringURL to a random food image
Full JSON Schema
{
  "type": "object",
  "properties": {
    "image": {
      "type": "string",
      "description": "URL to a random food image"
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 7, 2026