random_by_category

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

Return a random food image URL for a specific category; valid categories: biryani, burger, butter-chicken, dessert, dosa, idly, pasta, pizza, rice, samosa.

Parameters

NameTypeRequiredDescription
categorystringyes

Example call

Arguments

{
  "category": "dessert"
}

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_by_category","arguments":{"category":"dessert"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('random_by_category', {
  "category": "dessert"
});

More examples

{
  "category": "pizza"
}

Response shape

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

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 6, 2026