Talandor
Public MCP report

GolfData

https://golfdata.co/mcp

Official Registry

Official Registry · co.golfdata/golfdata · Publisher namespace: co.golfdata

Server checked today at 22:53 UTC

Displayed catalog: last complete observation from September 19

7 public tools observed. Tools were not executed. These tools come from the catalog observation above, not from the latest availability check.

Reachable

What Talandor observed

The server answered

Add the endpoint to your assistant using the configuration shown below. A Watch can alert you if this public catalog changes.

This is a public protocol and tools/list check, not a functional validation.

https://golfdata.co/mcp
AvailabilityReachablemeasured
Tools7 public tools observedmeasured
Assistant testNot tested by Talandorunknown

Configure your assistant · Check details

How to use this MCP

Talandor checks the server; it does not connect the server to your assistant.

Choose your assistant, then copy the configuration shown for that client. Authentication is completed with the MCP provider, never inside Talandor.

    Open the official client guide (opens in a new tab)
    Check details

    What changed

    Public contract stable since
    Last check · No semantic contract change since the previous complete snapshot.
    Info

    This public timeline shows the latest check, the last 24 hours, and the most recent important change. Watch keeps 30 days.

    The notes above are for this connector.

    Server-provided content. Tool names, descriptions and schemas below are copied from the MCP server. They may be in another language. Talandor does not translate or verify them.
    Tools and declared exposure

    Server annotations are declarations, not verified behavior.

    Show 7 of 7 server-provided tool definitions
    compare_prices
    No effect details provided
    Show server-provided details
    Server description (copied; language not verified)
    Current retailer prices for one product plus min, max and median, and the 30 and 90 day lows. The single call to answer 'is this a good price right now'.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "required": [
        "product_id"
      ],
      "properties": {
        "product_id": {
          "type": "string",
          "description": "canonical product uuid, from search_products"
        }
      }
    }
    get_current_prices
    No effect details provided
    Show server-provided details
    Server description (copied; language not verified)
    Latest stored advertised prices for one canonical product, with stock observations and stored affiliate links. These are not exact-variant verified buyable offers; use get_verified_offer when a marketplace source ID is known.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "required": [
        "product_id"
      ],
      "properties": {
        "product_id": {
          "type": "string",
          "description": "canonical product uuid, from search_products"
        }
      }
    }
    get_price_history
    No effect details provided
    Show server-provided details
    Server description (copied; language not verified)
    Daily price snapshot series per retailer. Snapshots run unbroken across retailers, so this answers whether a discount is genuine rather than a marked-up list price.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "required": [
        "product_id"
      ],
      "properties": {
        "days": {
          "type": "integer",
          "description": "1 to 365, default 30"
        },
        "product_id": {
          "type": "string",
          "description": "canonical product uuid, from search_products"
        }
      }
    }
    get_product
    No effect details provided
    Show server-provided details
    Server description (copied; language not verified)
    One product plus its enrichment_sources provenance rows. Every enriched field carries the source URL, confidence and checked_at it came from. Check enrichment_status before relying on specs: 'enriched' means model, release_year, msrp, description and specs are all sourced; 'partial' means some are missing.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "required": [
        "product_id"
      ],
      "properties": {
        "product_id": {
          "type": "string",
          "description": "canonical product uuid, from search_products"
        }
      }
    }
    get_verified_offer
    No effect details provided
    Show server-provided details
    Server description (copied; language not verified)
    Read-only golf-offer.v1 using Chip's admission, exact-variant and live redirect gate. Requires a known 27aDay marketplace deal/product source UUID; search_products returns canonical IDs, not these source IDs. Explicit variant_id null means no selectable variant. Returns verified_offer, check_price or unavailable; unknown currency/ratings stay unknown. No account actions, click attribution or purchase is performed. Deployment may be disabled (503).
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "required": [
        "canonical_product_id",
        "source_id",
        "source_kind",
        "variant_id"
      ],
      "properties": {
        "source_id": {
          "type": "string",
          "description": "Known marketplace source UUID, not canonical product UUID"
        },
        "variant_id": {
          "type": [
            "string",
            "null"
          ],
          "description": "Exact expected variant UUID or explicit null for nonvariant source"
        },
        "source_kind": {
          "enum": [
            "deal",
            "product"
          ],
          "type": "string"
        },
        "canonical_product_id": {
          "type": "string",
          "description": "canonical product uuid, from search_products"
        }
      },
      "additionalProperties": false
    }
    get_verified_offers
    No effect details provided
    Show server-provided details
    Server description (copied; language not verified)
    Discover admitted marketplace sources for a canonical product ID from search_products, then verify each returned offer through Chip's exact-source commerce gate. If variant_id is omitted or null on a variant-bearing product, returns selection_metadata_not_offer options; unsourced specs stay unknown. Supply the exact variant UUID to get offers. Two sources checked per page within a bounded 16-source live window, use next_offset; this is not exhaustive catalog coverage or a stable snapshot. Results retain golf-offer.v1, including check_price and unknown currency. No member actions or click attribution. Deployment may be disabled (503).
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "required": [
        "canonical_product_id"
      ],
      "properties": {
        "offset": {
          "type": "integer",
          "maximum": 15,
          "minimum": 0,
          "description": "Use response next_offset within the bounded live window; default 0"
        },
        "variant_id": {
          "type": [
            "string",
            "null"
          ],
          "description": "Exact variant UUID; null or omitted requests nonvariant offers or variant selection metadata"
        },
        "canonical_product_id": {
          "type": "string",
          "description": "Canonical product UUID from search_products"
        }
      },
      "additionalProperties": false
    }
    search_products
    No effect details provided
    Show server-provided details
    Server description (copied; language not verified)
    Search the canonical golf equipment catalog by brand, category, or free text. Call this first to resolve a product_id for the other tools. Categories: drivers, iron-sets, wedges, putters, fairway-woods, hybrids, balls, bags, shoes, gloves, apparel, headcovers, complete-sets, accessories, tech, rangefinders, grips.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "properties": {
        "q": {
          "type": "string",
          "description": "free text matched against the product name"
        },
        "brand": {
          "type": "string",
          "description": "brand name, case insensitive"
        },
        "limit": {
          "type": "integer",
          "description": "1 to 100, default 25"
        },
        "category": {
          "type": "string",
          "description": "one of the categories listed above"
        }
      }
    }
    Evidence and limitations

    Method: anonymous Streamable HTTP probe. We never invoke a tool.

    Attempted protocols: 2026-07-28, 2025-11-25

    Protocol2025-11-25
    TransportStreamable HTTP
    AuthNo authentication challenge observed
    EvidencePublic contract observed
    Total latency2480 ms
    Response bytes4718

    No diagnostic errors.

    Observation history
    Operational
    · stable since
    2025-11-25 · 7 tools · no change · 67 checks
    Unreachable now
    No protocol
    Operational
    2025-11-25 · 7 tools
    Unreachable now
    No protocol
    Unreachable now
    No protocol
    Operational
    · stable since
    2025-11-25 · 7 tools · no change · 10 checks
    Unreachable now
    No protocol
    Operational
    · stable since
    2025-11-25 · 7 tools · no change · 3 checks
    Operational
    2025-11-25 · 7 tools
    Operational
    2025-11-25 · 7 tools
    Complete public contract · 2025-11-25 · 7 tools
    ff97805af1b2
    Complete public contract · 2025-11-25 · 7 tools
    ff97805af1b2
    Complete public contract · 2025-11-25 · 7 tools
    ff97805af1b2

    Deep monitoring eligibility

    Eligible for deep monitoring

    A complete public tools/list contract was observed, so a future deep-monitoring baseline can be compared safely.

    A Watch starts from the payment section on this page, and only after a verified payment.

    See public monitoring
    Watch · recurring plan

    Watch this MCP

    Your agent depends on this MCP. When Watch is active, periodic checks alert you when we observe a change that may affect the client you selected.

    • Know when it goes downWhen Watch is active, availability is observed about every 5 minutes. An outage is confirmed after two failed checks, so a single miss is not treated as a lasting outage.
    • Know when its contract changesDeep checks about every hour compare public tool catalogs and authentication surfaces over time.
    • Know what changed and what to fixAn alert names the observed change and the next step for the client you selected.

    Full public-contract coverage: Availability, protocol, auth and public tool contract changes can be compared.

    Full WatchAvailability, protocol, auth and public tool contract changes
    Surface WatchAvailability, TLS, protocol and auth surface — no private tool diff

    Early access currently activates this first endpoint; adding more endpoints up to the planned limit of five is not open in this deployment. Live checkout is open. A Watch activates only after a verified payment event; a browser return never starts monitoring.

    Start Watch