Skip to main content
Glama

List new venues

list_new_venues
Read-only

Venues recently added to the Dim Hour catalog — across all 20 cities or one city. Use for 'what's new on Dim Hour' / new-opening alerts / weekly digests. Scored places to eat and drink come first; hotels, malls, museums and landmarks carry no score and follow them. Recency orders within each group. Dates earlier than 2026-06-06 are estimates reconstructed from history.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNoOptional city name or key; omit for all cities
daysNoLook-back window in days, default 30 (max 90)
limitNoMax results, default 25

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityYes
venuesYes
showingYes
total_newYes
window_daysYes
feed_generatedNo

TDQS

A4.5/5.0
Behavior5/5

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

Beyond the readOnly and non-destructive annotations, the description discloses meaningful behavior: scored food and drink venues are returned first, unscored categories follow, results are ordered by recency within each group, and pre-2026-06-06 dates are estimates reconstructed from history. This gives the agent accurate expectations for ordering and data provenance.

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

Conciseness5/5

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

The description is compact and well-structured: purpose first, then use cases, then ordering behavior, then the date-estimate caveat. Every sentence adds useful information without redundancy.

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 read-only list tool with three optional parameters and an output schema, the description covers what the tool returns, how results are ordered, when to use it, and an important data-quality caveat. Nothing critical is missing for correct invocation.

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

Parameters3/5

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 city, days, and limit. The description adds context that there are 20 cities and that city may target one city, but this does not substantially go beyond the schema's parameter descriptions.

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 description states a specific verb and resource: listing venues recently added to the Dim Hour catalog, optionally filtered by city. It clearly distinguishes this from curation or search by emphasizing recency, so an agent can tell it apart from siblings like list_curated and search_venues.

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 description gives explicit use cases: what's new on Dim Hour, new-opening alerts, and weekly digests. It does not explicitly state when to prefer alternatives such as search or list_curated, so it stops short of full when-not guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4/5.0
Disambiguation2/5

There are two pairs of nearly identical tools: `fetch` and `get_venue` both retrieve full venue records by ID, differing only in an optional long-form story; `search` and `search_venues` both perform catalog searches with overlapping scope and filtering. This creates real ambiguity about which tool to select for a given task.

Naming Consistency3/5

Naming mixes single verbs (`fetch`, `search`) with verb_noun snake_case (`get_venue`, `list_cities`, `search_venues`). The pattern is not uniform, and synonyms like fetch/get and search/search_venues further muddy the naming convention.

Tool Count5/5

Seven tools is a reasonable number for a venue discovery server. Even accounting for redundancy, the count is well within the typical range and each tool ostensibly serves a distinct operation (search, retrieve, list).

Completeness4/5

The tool surface covers the core workflows: discovering venues (search, search_venues), retrieving details (fetch, get_venue), and listing collections (list_cities, list_curated, list_new_venues). No major lifecycle operations are missing, though the redundant pairs suggest the design could have been more streamlined.

Resources