Caddence MCP server
Caddence tracks golf equipment prices across 40 UK retailers, refreshed daily. The Caddence MCP server makes that data available to AI assistants as first-class tools: ask Claude, Cursor or ChatGPT "what's a good price for a G430 driver?" and it can check live offers, the full price history and our deal rating before answering.
The server is free to use, requires no API key, and speaks the Model Context Protocol over Streamable HTTP:
https://caddence.golf/mcp Tools
-
search_golf_products· Search the catalogue by text, brand, type, condition or price range. Returns best current prices with retailer counts. -
get_product_offers· Every current retailer offer for one product, cheapest first, with variant detail and a purchase link per offer. -
get_deal_intelligence· CaddenceScore deal rating (0-100), price trajectory vs typical, used-market stats and per-build availability. -
get_price_history· Daily lowest and average price over a trailing window, with historical low, high and trend. -
get_market_deals· The largest verified price gaps between retailers across the market right now. -
get_catalog_stats· Live catalogue totals and the valid values for search filters.
Connect from Claude Code
claude mcp add --transport http caddence https://caddence.golf/mcp Connect from Claude Desktop or claude.ai
Settings → Connectors → Add custom connector, then paste
https://caddence.golf/mcp. No authentication is required.
Connect from Cursor
Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"caddence": { "url": "https://caddence.golf/mcp" }
}
} Connect from ChatGPT
ChatGPT supports remote MCP servers through developer mode: Settings → Connectors → Advanced →
Developer mode, then add https://caddence.golf/mcp as a new
connector.
Any other MCP client
Point any client that supports remote servers at the same URL with transport type
streamable-http (sometimes just http). The server is stateless: no
session setup, no OAuth.
About the data
- Coverage is UK retailers only; every price is in GBP.
- Prices are refreshed every 24 hours. A price is at most one day old.
- Purchase links returned by tools route through Caddence's redirect (the same links the website uses), which lets us count clicks and keeps our cheapest-first ranking honest. Some retailers pay us a commission; ranking is by price alone.
- Rate limits are generous for interactive assistant use. For bulk or commercial access, email hello@caddence.golf.