Skip to main content
Glama

TheDiscList Public MCP

search_discs

Search and filter disc golf discs by text query, brand, category, speed range, stability score range, and canonical flight class. Returns up to 50 bounded results with stable IDs and canonical URLs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
brandNoFilter by manufacturer/brand name (case-insensitive)
limitNoMaximum number of discs to return (1..50, default 10)
queryNoText query to match disc name, brand, model, or slug
offsetNoPagination offset (default 0)
categoryNoFilter by disc category (putter, midrange, fairway_driver, distance_driver)
speed_maxNoMaximum speed (1..15)
speed_minNoMinimum speed (1..15)
flight_classNoFilter by canonical flight class (e.g. 'Early Turn', 'Progressive Turn', 'True Flight', 'Assured Fade', 'Lockdown Fade')
stability_maxNoMaximum stability score (turn + fade)
stability_minNoMinimum stability score (turn + fade)

Schema Changelog

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

  1. First observed

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure, and it does contribute some: 'Returns up to 50 bounded results with stable IDs and canonical URLs' discloses output limits, determinism, and URL stability — traits not visible in the schema. However, it omits meaningful behaviors such as default result ordering, how the offset parameter interacts with result boundaries, and what happens when no filters are supplied.

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?

A single 27-word sentence that front-loads the verb and resource, then compresses the full filter surface into one clause and closes with output characteristics. Every element earns its place; no redundancy with the schema, and no filler.

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

Completeness3/5

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

The tool has 10 parameters, no output schema, and no annotations, so the description is the only source of return-value information. It covers result bounds and ID/URL stability, but given the offset and limit parameters, it should also state pagination or ordering semantics for an agent to navigate results correctly; the otherwise thorough schema mitigates this gap only for inputs, not outputs.

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 baseline is 3 and the description does not need to re-explain parameters. It adds a small amount of semantic value by grouping speed_min/speed_max and stability_min/stability_max into 'speed range' and 'stability score range', which hints that these pairs are meant to be used together, though it does not address the limit/offset pagination pair.

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 opens with a specific verb ('Search and filter') and resource ('disc golf discs'), then enumerates six distinct filter dimensions — text query, brand, category, speed range, stability score range, and flight class. This scoped enumeration makes the tool clearly distinguishable from siblings like get_disc (single fetch), compare_discs, and find_similar_discs, which are not search operations.

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

Usage Guidelines3/5

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

The description implies usage context — an agent should use this when it needs to discover or filter discs in the catalog — but it never explicitly states when to prefer it over get_disc, compare_discs, or find_similar_discs, nor does it give any exclusions or alternative routing. The 'search and filter' framing makes the primary use case obvious, so this is above 'no guidance' but below clear when/when-not instruction.

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
Disambiguation5/5

Each tool serves a clearly distinct purpose: searching, retrieving by ID, comparing, and finding alternatives. There is no functional overlap between any pair of tools.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern: search_discs, get_disc, compare_discs, find_similar_discs. The convention is uniform and predictable.

Tool Count5/5

Four tools is a well-scoped set for a disc golf disc reference server. Each tool addresses a distinct core workflow without redundancy or bloat.

Completeness5/5

The surface covers the full read-only lifecycle for disc data: discovery via search, detail via get, comparison, and replacement recommendations. No obvious operations are missing for the stated domain.

Resources