TheDiscList Public MCP
Server Details
Search disc golf discs, compare Speed/Glide/Turn/Fade flight ratings, and find similar alternatives across brands. Free, public, read-only.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
4 toolscompare_discsAInspect
Compare 2 to 4 discs side-by-side, computing exact flight rating deltas and stability spread relative to the primary baseline disc.
| Name | Required | Description | Default |
|---|---|---|---|
| disc_ids | Yes | Array of 2 to 4 disc IDs or slugs to compare |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral burden. It does disclose a meaningful behavioral trait: the tool 'computes' deltas and stability spread rather than mutating data, and it establishes a 'primary baseline disc' framing. It does not, however, say what happens with invalid/unknown disc IDs, how the baseline is chosen, or what the response structure will be.
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 tightly packed sentence states the action, the valid count range, the comparison mode, and the computed metrics. Every phrase earns its place, and there is no filler or repetition of the schema.
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 single-parameter tool with full schema coverage and no nested objects, the description is nearly complete: it states the operation, the input cardinality, and the key computed outputs. Since there is no output schema, a slightly more explicit statement of the return shape would close the last gap, but the mention of deltas and stability spread gives adequate context.
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 fully documents disc_ids as an array of 2 to 4 IDs or slugs, so the baseline is 3. The description adds genuine operational meaning by introducing the 'primary baseline disc' concept, which implies ordering significance in disc_ids. This is meaningful context beyond the schema's generic array description.
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 uses a specific verb ('Compare') and resource ('discs'), and clearly distinguishes this tool from siblings by adding the scope '2 to 4 discs side-by-side' and the unique output concept of 'flight rating deltas and stability spread'. It is immediately obvious this is not get_disc, search_discs, or find_similar_discs.
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 core use case clear: compare a set of 2–4 discs relative to a primary baseline. However, it does not explicitly state when to prefer this over find_similar_discs or search_discs, and there are no exclusion conditions or alternative routing hints. Usage context is implied rather than prescribed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find_similar_discsBInspect
Find alternative replacement discs matching a target disc's category, speed, and flight profile based on weighted Euclidean flight distance.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of similar discs to return (1..20, default 5) | |
| disc_id | Yes | Target disc ID or slug to find replacements for | |
| target_brand | No | Optional target brand filter for cross-brand replacements (e.g. find Discraft alternative to Innova TeeBird) | |
| exclude_same_brand | No | If true, exclude discs from the same manufacturer |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden of behavioral disclosure. It mentions the matching algorithm but does not state whether the operation is read-only, what the output format is (list of discs, details, ordering), or how edge cases (e.g., no matches) are handled. This is a significant gap for a tool with zero annotation coverage.
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, focused sentence that front-loads the core purpose and algorithm. There is no redundant information or fluff, making it efficient for an agent to parse 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?
The tool has 4 parameters (all documented) and no output schema. The description explains the matching logic but omits critical context such as the return format (whether it returns full disc objects or just IDs), result ordering, and any read-only guarantees. Given the lack of annotations and output schema, the description is only partially complete for safe 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%, so all parameters are documented. The description adds minimal new meaning beyond the schema: it clarifies that disc_id refers to the target disc and that the tool uses category/speed/flight profile, but this is largely implicit in the schema. Since the schema does the heavy lifting, the description's contribution is modest.
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 (find alternative replacement discs), the resource (discs), and the matching criteria (category, speed, flight profile) plus the algorithm (weighted Euclidean flight distance). This clearly distinguishes it from siblings like compare_discs, get_disc, and search_discs, which have different purposes.
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 provides no guidance on when to use this tool versus the sibling tools. It does not mention alternative tools, conditions for use, or when to avoid it. An agent would need to infer when similarity-based replacement finding is appropriate, which is not stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_discAInspect
Retrieve comprehensive details for a specific disc by numeric ID or string slug, including flight ratings, stability score, flight class, and available plastics.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Stable disc ID or slug (e.g. 'innova-destroyer', 'discraft-buzzz') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It transparently indicates a read operation ('Retrieve') and discloses the returned data categories, but it does not mention behavior for invalid IDs, missing discs, response format, or potential errors.
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 with no filler. It conveys the action, the resource, the identifier forms, and the key return fields efficiently.
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 lookup, the description supplies the identifier semantics and the main return categories, which is sufficient for most invocations. It lacks explicit error or not-found behavior, but the tool is simple enough that this 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 coverage is 100%, and the schema already documents the id parameter with examples. The description adds that the id can be numeric or a slug and clarifies the output fields, but it does not add significant new syntax or format details beyond the schema.
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 ('Retrieve'), a specific resource ('a specific disc'), and the two accepted identifier forms ('numeric ID or string slug'). It also lists the data returned, which distinguishes it from siblings like search_discs, compare_discs, and find_similar_discs.
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 clearly implies this tool is for fetching a single known disc by ID/slug, which is distinct from sibling tools for searching, comparing, or finding similar discs. However, it does not explicitly state when NOT to use it or name the alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_discsAInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| brand | No | Filter by manufacturer/brand name (case-insensitive) | |
| limit | No | Maximum number of discs to return (1..50, default 10) | |
| query | No | Text query to match disc name, brand, model, or slug | |
| offset | No | Pagination offset (default 0) | |
| category | No | Filter by disc category (putter, midrange, fairway_driver, distance_driver) | |
| speed_max | No | Maximum speed (1..15) | |
| speed_min | No | Minimum speed (1..15) | |
| flight_class | No | Filter by canonical flight class (e.g. 'Early Turn', 'Progressive Turn', 'True Flight', 'Assured Fade', 'Lockdown Fade') | |
| stability_max | No | Maximum stability score (turn + fade) | |
| stability_min | No | Minimum stability score (turn + fade) |
TDQS
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.
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.
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.
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.
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.
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.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
- First observed
compare_discs - First observed
find_similar_discs - First observed
get_disc - First observed
search_discs
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables detection and analysis of pre-public product launches through web search, content extraction, AI-powered scoring, and automated alerting. Provides comprehensive tools for surfacing stealth startup signals before they trend publicly.MIT

industrylens-mcpofficial
AlicenseNot gradedqualityBmaintenanceBrowse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.MIT- AlicenseNot gradedqualityCmaintenanceEnables AI chat clients to perform market research and competitive intelligence by gathering company overviews, competitor lists, product portfolios, pricing snapshots, and recent news via live Tavily search.MIT
- AlicenseAqualityAmaintenanceDetects hiring intent signals by scanning job boards for specific companies. Returns structured role data for outbound sales targeting.11961MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
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.
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.
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.
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.