wine_recommendation

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

Fetch specific wine product recommendations for a wine type name (e.g. “merlot”, “chardonnay”) with optional minRating, price target, and number of results. Returns product name, price, average rating, and description.

Parameters

NameTypeRequiredDescription
winestringyes
minRatingnumberno
pricestringno
numbernumberno

Example call

Arguments

{
  "wine": "Cabernet Sauvignon"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('wine_recommendation', {
  "wine": "Cabernet Sauvignon"
});

More examples

{
  "wine": "Pinot Grigio",
  "minRating": 4,
  "number": 5
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Wine recommendations"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 7, 2026