wine_pairing
Pack: spoonacular · Endpoint: https://gateway.pipeworx.io/spoonacular/mcp
Fetch wine pairing suggestions for a food dish or ingredient (e.g. “salmon”, “pasta primavera”) with optional maxPrice filter. Returns paired wine types and specific product recommendations with name, price, and description.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
food | string | yes | |
maxPrice | number | no |
Example call
Arguments
{
"food": "salmon"
}
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_pairing","arguments":{"food":"salmon"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('wine_pairing', {
"food": "salmon"
});
More examples
{
"food": "steak",
"maxPrice": 50
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Wine pairing 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.