Pour Picks MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Pour Picks MCP Serverrecommend a wheated bourbon under $60 for a gift"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Pour Picks MCP Server
Query the Pour Picks bourbon & whiskey database from Claude, or any MCP-compatible AI client. Read-only access to 4,700+ bottles with structured tasting profiles, prices, pairings, and community ratings.
Pour Picks is the bourbon collector's journal for iOS — get it on the App Store.
Tools
Tool | What it does |
| Full-text catalog search with category, price, and proof filters |
| Full record for one bottle (by ID or name): tasting profile, price, pairings, community ratings |
| Bottles with a similar flavor profile, ranked by shared notes and body/sweetness/char proximity |
| Same style, similar profile, lower price |
| Picks from flavor preferences + budget + occasion |
| Side-by-side: proof, age, price, shared and distinct flavors, ratings |
| What Pour Picks users are adding to their cellars right now |
| A pour for tonight, from mood, occasion, and season |
Every response includes source attribution, a citation-ready summary line, links, and data freshness dates. All scoring is deterministic — no AI calls happen inside the server.
Related MCP server: Alko MCP Server
Install (Claude Desktop)
Requires Node.js 18+.
Add to your claude_desktop_config.json (Claude Desktop → Settings → Developer → Edit Config):
{
"mcpServers": {
"pour-picks": {
"command": "npx",
"args": ["-y", "pour-picks-mcp"]
}
}
}Restart Claude Desktop. No API key or configuration needed — the server ships with public read-only access.
From a local checkout
{
"mcpServers": {
"pour-picks": {
"command": "node",
"args": ["/path/to/pour-picks/mcp-server/dist/index.js"]
}
}
}Configuration (optional)
The server works with zero configuration using Pour Picks' public read-only key. Environment variables override the defaults:
Variable | Purpose |
| Override the database URL |
| Internal use only — unlocks live 30-day cellar-add trending. Never distribute this key. |
Without the service key, trending_bottles falls back to catalog popularity and labels the method in its response (method: "catalog_popularity_tier" vs "cellar_adds_last_30_days").
Remote endpoint (no install)
Streamable HTTP for web agents and MCP clients that take a URL:
https://nqnigdqkcvrziwcbgily.supabase.co/functions/v1/mcpAlso listed on Smithery (gateway pour-picks--bguillow.run.tools) and the official MCP registry as io.github.bguillow-rgb/pour-picks.
Example agent requests
Questions an agent can answer with these tools:
"What bourbon is similar to Eagle Rare but easier to find?" →
find_similar"Recommend a bourbon under $60 with vanilla, oak, and caramel notes." →
get_recommendationswithtaste_preferences: ["vanilla","oak","caramel"], budget: 60"What tastes like Blanton's without the price tag?" →
find_cheaper_alternative"Compare Eagle Rare and Buffalo Trace." →
compare_bottles"What bourbon should I pour on a cold night?" →
pour_tonight_suggestionwithseason: "winter""What bottles are collectors adding right now?" →
trending_bottles
Example response shape (truncated):
{
"cheaper_alternatives": [
{ "name": "Buffalo Trace W.L. Weller 12 Year", "price_usd": 49.99,
"similarity": 0.78, "savings_usd": 15.0,
"shared_flavors": ["caramel", "oak"] }
],
"attribution": {
"source": "Pour Picks — The Bourbon Collector's Journal",
"links": { "website": "https://pourpicks.app/" }
}
}Development
npm install
npm run dev # run from TypeScript via tsx
npm run build # compile to dist/
npm start # run compiled serverThe server speaks MCP over stdio. Catalog access is read-only by construction: every query path issues SELECTs against tables that are publicly readable under row-level security, and it is rate-limited to 60 calls/minute.
Usage telemetry: each tool call logs the tool name, its arguments, client name/version, duration, and success/failure to a write-only log table (insert-only under RLS; contents are not publicly readable). No user identity, account data, or conversation content is collected. Logging is fire-and-forget and never affects responses.
Publishing
npm:
npm publishfrom this directory (themcpNamefield in package.json links the package to the registry entry).MCP Registry:
server.jsonin this directory is the registry manifest. Publish with themcp-publisherCLI after the npm package is live:mcp-publisher login github && mcp-publisher publish.
Data & attribution
Bottle data, tasting profiles, and pairings are curated by Pour Picks. Quote freely with attribution:
Source: Pour Picks — The Bourbon Collector's Journal (pourpicks.app)
Community rating counts are included with every rating so you can judge sample size. Freshness dates on each bottle reflect the last enrichment pass.
Available Tools
8 toolscompare_bottlesCompare two bottlesARead-onlyIdempotentInspect
Side-by-side comparison of two bottles: proof, age, price, flavor profile, shared and distinct tasting notes, and community ratings.
| Name | Required | Description | Default |
|---|---|---|---|
| bottle_a | Yes | First bottle — UUID or name | |
| bottle_b | Yes | Second bottle — UUID or name |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish read-only and idempotent behavior. The description adds a concrete behavioral profile by specifying that it produces shared and distinct tasting notes and community ratings, which signals a synthesized comparison rather than a raw record lookup.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One dense, front-loaded sentence lists all the comparison dimensions without extraneous prose. Every fragment adds useful information for selecting and understanding the tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a two-parameter read-only comparison tool with fully documented inputs and clear output dimensions, the description is nearly complete. It lacks explicit details about error handling or exact return shape, but that is not essential given the simple scope and annotations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and both parameters are documented as 'First bottle'/'Second bottle' with UUID or name. The description does not add additional parameter-level detail, so the schema already carries the semantic load.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action—'side-by-side comparison of two bottles'—with a clear resource and enumerates the comparison dimensions (proof, age, price, flavor profile, ratings). This directly distinguishes it from sibling tools like get_bottle (single bottle) and find_similar (one-to-many alternatives).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes the intended use clear: comparing exactly two specific bottles. It does not explicitly name alternatives or state when not to use it, but the comparison scope and sibling names provide implied context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find_cheaper_alternativeFind a cheaper alternativeARead-onlyIdempotentInspect
Bottles in the same style with a similar flavor profile at a lower price than the given bottle. Great for 'what tastes like X without the price tag' questions.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 5) | |
| bottle_id | Yes | Bottle UUID or name |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish readOnlyHint, idempotentHint, and non-destructive behavior. The description adds the real behavioral substance: results are constrained to same style, similar flavor profile, and lower price, so an agent knows what it is selecting before calling.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two tightly constructed sentences: first states the functional contract, second gives a relatable use case. There is no filler or repetition of schema metadata.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple, read-only, two-parameter list tool with a 100%-covered schema and safe annotations, this description is sufficient. It tells the agent what is returned conceptually and why the tool exists, without needing to describe return fields.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so bottle_id (UUID or name) and limit (default 5, max 10) are fully documented there. The description adds no parameter-specific nuance beyond 'the given bottle,' so the baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific action: identifying bottles in the same style and similar flavor at a lower price than a given bottle. This clearly separates it from siblings like find_similar (no price constraint) and compare_bottles (comparison, not recommendation).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives a concrete use case ('what tastes like X without the price tag'), which is clear guidance for when to call it. It does not explicitly name alternatives or state exclusions, but the intended scenario is unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find_similarFind similar bottlesARead-onlyIdempotentInspect
Bottles with a similar flavor profile to a given bottle, ranked by shared flavor notes and body/sweetness/char proximity. Deterministic scoring over the Pour Picks structured tasting data.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 5) | |
| bottle_id | Yes | Bottle UUID or name |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey that this is read-only, idempotent, and non-destructive, so the description is not responsible for safety disclosure. It adds valuable behavioral context beyond annotations by stating that scoring is deterministic and explaining exactly which tasting dimensions drive the ranking.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with zero redundancy. It defines purpose, ranking criteria, scoring type, and data source in a compact, front-loaded structure that an agent can process quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a low-complexity tool with two simple parameters, read-only annotations, and no output schema, the description is sufficiently complete. It tells the agent what input is expected, how results are sorted and ranked, and what data source is involved, leaving little ambiguity for correct selection and invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, and the schema already fully documents bottle_id (UUID or name) and limit (max 15, default 5). The description adds contextual meaning around flavor profile and ranking, but it does not describe parameter-specific behavior beyond what the schema provides, so a baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The tool's purpose is immediately clear: it returns bottles similar in flavor to a given bottle, ranked by shared notes and body/sweetness/char proximity. The title 'Find similar bottles' supplies the explicit verb, and the description's criteria distinguish it from siblings like find_cheaper_alternative or compare_bottles.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes the usage condition clear: you need one bottle_id and want a flavor-similar ranked list. It does not explicitly name alternatives or say when not to use it, but the concrete scoring criteria ('shared flavor notes', 'proximity') provide enough context for an agent to select it over generic or price-based sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_bottleGet bottle detailsARead-onlyIdempotentInspect
Detailed record for one bottle: tasting profile, flavor notes, pairings, price, community ratings. Accepts a Pour Picks bottle ID (UUID) or a bottle name.
| Name | Required | Description | Default |
|---|---|---|---|
| slug_or_id | Yes | Bottle UUID or a name like 'Eagle Rare 10' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already establish this is read-only, idempotent, and non-destructive, so the description does not need to restate that. It adds useful context about the returned record, but it does not cover not-found behavior or exact matching semantics, which would make the behavior fully transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: it opens with the core purpose, lists the key output content, then states the two accepted input forms. There is no filler, and every sentence contributes useful information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema available, the description compensates by enumerating what the detailed record contains. For a single-parameter lookup tool, this is nearly complete; only the missing-record behavior is not addressed, which is a minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% — the parameter already documents that it accepts a UUID or a name like 'Eagle Rare 10'. The description mostly restates this, adding no meaningful new semantics beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies this as retrieving a single bottle's detailed record, naming the resource and its key content: tasting profile, flavor notes, pairings, price, and community ratings. The 'one bottle' wording distinguishes it from search-style siblings, though it does not explicitly name an alternative.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool: when the agent already has a Pour Picks bottle ID or name and needs full details for one bottle. However, it does not explicitly contrast with siblings like search_bottles for broad lookup or find_similar for recommendations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_recommendationsGet personalized recommendationsARead-onlyIdempotentInspect
Personalized bottle picks from taste preferences (flavor keywords like 'caramel', 'smoke', 'cherry'), a budget in USD, and an occasion (e.g. 'gift', 'everyday sipper', 'celebration', 'introducing a friend to bourbon').
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 5) | |
| budget | No | Max price in USD | |
| category | No | Restrict to one spirit category | |
| occasion | No | What the bottle is for | |
| taste_preferences | Yes | Flavor keywords the drinker enjoys, e.g. ['caramel','vanilla','oak'] |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already provide readOnlyHint=true, idempotentHint=true, destructiveHint=false, so the safety profile is covered. The description adds context about inputs but not much about behavior beyond that: no mention of what the tool returns, how recommendations are ranked, or any limits or caveats. It does not contradict annotations, but it also doesn't add significant behavioral precision beyond the obvious read-only nature.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that effectively communicates the tools purpose and key inputs without redundant words. Each example is purposeful and helps clarify intents, making it an efficient, well-structured definition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the moderate parameter count, rich schema, and annotations, the description is largely sufficient for an agent to call it correctly. It captures the input types and purpose in one sentence. However, it misses minor behavioral details like the default limit (5) or that results are returned as a list of bottles—though these are implied by the schema and the phrase 'bottle picks'. It is still fairly complete for what it is.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents each parameter. The description adds little beyond the schema—it restates taste_preferences with examples and occasion with examples, and repeats that budget is in USD (already in schema's description). While the examples are helpful, they don't substantially move beyond what the schema already says, so a baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('personalized bottle picks') and the resource (bottles selected from taste preferences, budget, occasion). This is clearly distinct from sibling tools like search_bottles (which implies searching) or trending_bottles (which implies popularity), and the inputs are provided upfront. It adds specificity beyond the title by naming exactly what kind of recommendations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description strongly implies usage: when the agent needs personalized suggestions based on taste, budget, and occasion, this is the tool to call. But it does not explicitly mention when not to use it or recommend alternatives like search_bottles or pour_tonight_suggestion. The use cases are implied through the parameter examples, but there is no explicit 'use when...' or 'if you need... instead'. This is adequate but lacks strong discrimination.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pour_tonight_suggestionWhat should I pour tonight?ARead-onlyIdempotentInspect
A pour suggestion for right now, based on mood (e.g. 'unwinding', 'celebratory', 'contemplative'), occasion (e.g. 'nightcap', 'with friends', 'after dinner'), and season.
| Name | Required | Description | Default |
|---|---|---|---|
| mood | No | How you're feeling | |
| season | No | ||
| occasion | No | The setting |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover read-only, idempotent, and non-destructive behavior. The description adds the suggestion dimensions (mood, occasion, season) but doesn't describe the exact return behavior, randomness, or personalization.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single streamlined sentence that leads with the core proposition and then lists the relevant factors. There is no filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple system with three optional parameters and no nested schemas, the description is adequate and complete enough for a basic agent. The main gap is not mentioning what the suggestion looks like or how it differs from the sibling suggestion tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description enriches the schema by providing concrete examples for mood ('unwinding', 'celebratory') and occasion ('nightcap', 'with friends'), which helps specify valid literal values beyond the generic parameter descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: a pour suggestion for right now based on mood, occasion, and season. It is purposeful but does not distinguish itself from siblings like get_recommendations or trending_bottles.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool via 'for right now' and gives reasons like mood, occasion, and season, but it does not mention alternatives or explicitly state when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_bottlesSearch the Pour Picks catalogARead-onlyIdempotentInspect
Full-text search across 4,700+ bourbons, ryes, scotches, and other spirits in the Pour Picks database. Filter by category, price (USD), and proof. Returns structured tasting profiles with source attribution.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 10) | |
| query | No | Free-text search: distillery, bottle name, or expression | |
| category | No | Spirit category filter | |
| price_max | No | Maximum price in USD | |
| price_min | No | Minimum price in USD | |
| proof_max | No | Maximum proof | |
| proof_min | No | Minimum proof |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover read-only, idempotent, and non-destructive behavior. The description adds useful behavioral context beyond that: full-text search over a large catalog, filterable results, and a structured tasting-profile return format with source attribution. It does not detail response shape or ordering, but it is a solid addition.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two focused sentences pack the key facts: the target resource, the catalog scope, available filters, and return type. No redundant phrasing or filler; the most distinctive detail (full-text search scope) is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only search tool with no required parameters and rich schema coverage, the description is mostly complete. It explains what results look like ('structured tasting profiles with source attribution'), which matters because there is no output schema. It could mention ordering or pagination, but the limit parameter in the schema covers the main invocation concern.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents all 7 parameters with 100% description coverage, so the baseline is 3. The description only mentions the general filter categories—category, price, and proof—without adding new detail beyond what the schema already provides. This is adequate but not compensatory.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action ('Full-text search') with a clear resource ('4,700+ ... spirits in the Pour Picks database') and lists the major filters. This clearly distinguishes it from sibling tools like get_bottle or find_similar, which are narrower lookups or recommendations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this is the tool for broad catalog searching and filtering, but it never explicitly says when an agent should prefer it over get_bottle, find_similar, or get_recommendations. There are clear search semantics, but no exclusions or alternative tool routing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
trending_bottlesTrending bottlesARead-onlyIdempotentInspect
Bottles Pour Picks users are adding to their cellars most over the last 30 days (falls back to catalog popularity when live activity data is unavailable). The method used is labeled in the response.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 10) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark this as read-only, idempotent, and non-destructive. The description adds useful behavior beyond those annotations: the fallback to catalog popularity when live data is unavailable and the promise that the method used is labeled in the response.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences carry the full meaning, with the core data source and timeframe stated first. Every sentence contributes: the second sentence is not waste because it discloses important fallback and response-labeling behavior.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple, one-parameter, read-only list tool, the description provides enough to understand what is being returned and what the data represents. It is not a 5 because there is no output schema and the description could have more explicitly described the response as a list of bottles, though that is strongly implied.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The only parameter, limit, is already fully described in the schema with min, max, and default behavior, and schema coverage is 100%. The description adds no extra parameter-level guidance, so the baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the resource (bottles Pour Picks users add to their cellars) and the time window (last 30 days), making the trending purpose clear. It has a slightly awkward phrasing, but it is still distinguishable from siblings like search_bottles and compare_bottles.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains the 30-day live-data window and the fallback to catalog popularity, which gives useful context. However, it does not explicitly say when to prefer this over alternatives such as get_recommendations, find_similar, or pour_tonight_suggestion.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool has a clearly distinct purpose: searching, fetching a bottle, finding similar or cheaper alternatives, personal recommendations, comparison, trending, and a mood-based pour suggestion. Even nearby functions like find_similar and find_cheaper_alternative are differentiated by their price constraint.
Most tools follow a verb_object or verb_adjective pattern like search_bottles, get_bottle, compare_bottles, and find_similar. trending_bottles and pour_tonight_suggestion break the imperative pattern slightly, but the naming is otherwise clear and predictable.
Eight tools is a well-scoped set for a spirits discovery and recommendation server. Each tool provides a meaningful capability without unnecessary overlap or bloat.
The tool set covers the primary workflows: browsing, searching, retrieving details, finding alternatives, comparing, getting personalized recommendations, and seeing popular picks. There are no obvious gaps for a read-only bottle discovery and recommendation domain.
Maintenance
Related MCP Connectors
Provide detailed Pokémon data and information through a standardized MCP interface. Enable LLMs an…
Search, inspect, recommend, and explain rated AI tools through Agent Radar.
Search 2,000+ AI tools: pricing, alternatives, comparisons, and live, dead or acquired status.
Whisky auction market data: past and live lots, prices, distillery stats and retail listings.
Related MCP Servers
- AlicenseAqualityBmaintenanceEnables intelligent cocktail discovery and recipe retrieval from Bar Assistant instances with natural language search, similarity matching, batch processing, and ingredient analysis capabilities.32MIT
- AlicenseAqualityDmaintenanceProvides AI assistants with access to Finland's Alko alcohol product catalog, enabling product search across 11,900+ items, store availability checks, Vivino ratings lookup, and personalized recommendations based on food pairings and preferences.914MIT
- AlicenseNot gradedqualityDmaintenanceProvides access to the Open Brewery DB API, allowing AI assistants to search for breweries and retrieve detailed information like location, type, and contact details. It enables interactive exploration of a global database containing over 40,000 breweries.201MIT
- AlicenseAqualityNot gradedmaintenanceProvides access to over 2.5 million US alcohol label records from the TTB via the COLA Cloud API. It enables users to search for labels by brand, barcode, or permit holder and retrieve detailed product information including label images and ABV.6
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bguillow-rgb/pour-picks-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server