Get one SOMA beer
get_beerDetailed spec for a single beer by slug: lager, ipa, belgian-wit, stout, stout-caffeinated.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Beer slug: lager, ipa, belgian-wit, stout, stout-caffeinated |
get_beerDetailed spec for a single beer by slug: lager, ipa, belgian-wit, stout, stout-caffeinated.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Beer slug: lager, ipa, belgian-wit, stout, stout-caffeinated |
Changes observed during successful MCP inspections.
Input schema / properties / slug / descriptionPrevious value: -"Beer slug: lager, ipa, belgian-wit, or stout"New value: +"Beer slug: lager, ipa, belgian-wit, stout, stout-caffeinated"Input schema / properties / slug / enumPrevious value: -[
- "lager",
- "ipa",
- "belgian-wit",
- "stout"
-]New value: +[
+ "lager",
+ "ipa",
+ "belgian-wit",
+ "stout",
+ "stout-caffeinated"
+]Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only says the tool returns a 'detailed spec' for a single beer, but does not describe what happens for unknown slugs, what fields the spec contains, or whether the operation is read-only.
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 one compact sentence with no filler. The core operation is front-loaded and the slug list is a useful quick reference.
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 one-parameter lookup tool, the description and schema together give enough information for an agent to select and invoke it correctly. The main gap is the lack of output-shape or error-behavior details, but the tool is simple enough that this is not critical.
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 slug parameter is fully documented with an enum and description. The description's slug list duplicates the schema without adding extra meaning or syntax details, so the baseline of 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 a specific verb and resource: 'Detailed spec for a single beer by slug.' It is clearly distinct from siblings like list_beers by specifying a single beer and enumerating the valid beer types.
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 tool is for retrieving one specific beer by slug, but it does not explicitly contrast it with list_beers or other get_* tools. There is no when-to-use/when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.