Wine Collector
Wine prices, ratings, and tasting profiles
Look up any wine to see ratings, prices, tasting notes, and where to buy. Search by name, grape, region, or style. Compare prices across merchants, explore wine regions, and discover top-rated bottles for any occasion. Works globally with localized pricing.
Search for wines by name, grape variety, region, or style. Returns matching wines with ratings, prices, and wine IDs for detailed lookup.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "wine-collector",
"skill": "search_wines",
"input": {
"query": "Bordeaux"
}
}' \
https://api.toolrouter.com/v1/tools/callGet full details for a specific wine including ratings, reviews, pricing, and tasting notes. Requires a wine_id from search_wines results.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "wine-collector",
"skill": "wine_details",
"input": {
"wine_id": 1520
}
}' \
https://api.toolrouter.com/v1/tools/callDiscover the highest-rated wines by type, grape, region, or price range. Great for finding quality bottles for any occasion or budget.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "wine-collector",
"skill": "top_rated",
"input": {
"wine_type": "red",
"max_price": 30
}
}' \
https://api.toolrouter.com/v1/tools/callCompare prices for a specific wine across merchants to find the best deal. Shows price range, merchant names, and direct purchase links.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "wine-collector",
"skill": "price_compare",
"input": {
"query": "Opus One 2019"
}
}' \
https://api.toolrouter.com/v1/tools/callGet the detailed tasting profile for a wine — acidity, tannin, sweetness, body, and dominant flavor notes. Requires a wine_id from search results.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "wine-collector",
"skill": "tasting_profile",
"input": {
"wine_id": 1520
}
}' \
https://api.toolrouter.com/v1/tools/callExplore wines from a specific region or country. Browse what a region is known for and find its top bottles.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "wine-collector",
"skill": "region_explorer",
"input": {
"country": "fr"
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"wine-collector","skill":"search_wines","input":{}}' \
https://api.toolrouter.com/v1/tools/call