Skip to main content
Glama
chrischall

untappd-mcp

by chrischall

Get Untappd beer detail

untappd_beer_info
Read-onlyIdempotent

Retrieve full beer details by Untappd ID: description, style, ABV, IBU, brewery, rating, and total check-ins. Use the full view for recent activity.

Instructions

Get full detail for a beer by its Untappd beer id (bid): description, style, ABV, IBU, brewery, rating, total check-in count, and — on view:"full" — recent activity. Get a bid from untappd_search_beer. Read-only.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bidYesUntappd beer id (bid)
viewNoResponse shape: "compact" (default) drops fields the response already carries elsewhere; "full" returns every field this server understands. compact asks Untappd for its own slim record, dropping the embedded recent-activity (media/check-in) block server side; "full" returns the whole record including that activity. No local projection — the beer fields themselves are identical on both rungs.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed2 schema fields changedv1.10.1
    • removedInput schema / properties / compact
      Removed value: -{
      -  "description": "Return a slimmer record without the embedded recent-activity lists (default false)",
      -  "type": "boolean"
      -}
    • addedInput schema / properties / view
      Added value: +{
      +  "description": "Response shape: \"compact\" (default) drops fields the response already carries elsewhere; \"full\" returns every field this server understands. compact asks Untappd for its own slim record, dropping the embedded recent-activity (media/check-in) block server side; \"full\" returns the whole record including that activity. No local projection — the beer fields themselves are identical on both rungs.",
      +  "enum": [
      +    "compact",
      +    "full"
      +  ],
      +  "type": "string"
      +}
  2. First observedv0.0.0

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses a behavioral contingency the annotations don't: recent activity is only returned on view:full, so a default compact call silently excludes it. The schema adds depth by explaining this is a server-side drop of the activity block, not a local projection. The annotations (readOnlyHint, idempotentHint, openWorldHint) are consistent with the Read-only line, so there is no contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three short sentences, front-loaded with the verb-resource-fieldlist sentence and followed by actionable sourcing guidance. The only waste is the trailing Read-only fragment, which merely duplicates the readOnlyHint annotation — a minor redundancy in an otherwise tight definition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a two-parameter read-only lookup with no output schema, the enumerated field list substitutes for return-value documentation and tells the agent exactly what it will receive. The view parameter's effect on response shape is fully documented in the schema, and the sourcing instruction closes the loop on the required bid. Nothing needed to call the tool correctly — input source, default behavior, conditional output — is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100 percent, so the bid type/bounds and the view enum with its detailed compact-versus-full explanation already carry the semantic load; the baseline is 3. The description adds workflow meaning the schema lacks by telling the agent to get a bid from untappd_search_beer, grounding the parameter in an agent-reachable source. The recent-activity-on-full note reinforces view semantics already documented in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The opening sentence pairs a specific verb and resource — Get full detail for a beer by its Untappd beer id (bid) — and enumerates the returned fields: description, style, ABV, IBU, brewery, rating, check-in count, and recent activity on full view. This distinguishes it from the search sibling, and the instruction to source the bid from untappd_search_beer makes clear this tool resolves a known id rather than performing search.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The line 'Get a bid from untappd_search_beer' is explicit workflow guidance, telling the agent how to obtain the required bid parameter before calling. It clearly implies the tool's niche — detail lookup for a known id — but never names when-not cases, such as preferring untappd_beer_activity for activity-only needs instead of view:full.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Latest Blog Posts

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/chrischall/untappd-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server