← Registry

Data Collection

cyclesite.co.uk

Search and retrieve used bike listings from the UK Cyclesite marketplace.

1 endpoint34 known toolsFirst detected May 29, 2026Last detected September 6, 2026

ENDPOINT 1

https://www.cyclesite.co.uk/api/mcp-server

No auth detected

MCP server metadata

Name
cyclesite
Version
2.4.4
Capabilities
resourcestoolsprompts
Server instructions

Cyclesite is the UK marketplace for used bicycles. These tools cover live UK inventory, market-price valuations from real UK market data, brand and model data, and an aggregated UK stolen-bike check. Picking a tool: - Buyers: search_bikes for live listings; get_listing_detail for one listing; get_valuation (needs brand and model) for what a model is worth; compare_bikes to weigh options; recommend_bike_for_budget when only a budget is known. - Sellers: suggest_listing_price, then draft_listing, then publish_listing; grade_listing_quality to improve an advert. - Trust and safety: run check_stolen on a frame serial before buying or publishing; report_stolen explains how to report a theft. Good to know: - All prices are GBP and all inventory is UK-only. - Valuations are model-level aggregates of last-advertised UK asking prices (not confirmed sale prices), and a market-level estimate rather than a quote for one specific bike. - Write tools (publish_listing, make_enquiry, mark_as_sold, reserve_listing, save_search, respond_to_enquiry) need the user to connect their Cyclesite account. If a call returns an unauthorized error, send the user the consentUrl it includes. - search and fetch are OpenAI deep-research compatibility tools; prefer search_bikes and get_listing_detail for richer data.

Known tools 34

search_bikes

Search live UK used-bike listings on Cyclesite (the UK's used bicycle marketplace).

Inferred read-only
get_recent_listings

What's new on Cyclesite right now — up to 10 of the freshest active UK listings, refreshed every 15 minutes.

Inferred read-only
get_listing_detail

Full details for a specific bike listing on Cyclesite — specs, condition, frame number presence, photos, delivery, seller's city.

Inferred read-only
find_similar_listings

Given a Cyclesite listing slug, return up to 5 similar active listings (same category, ±25% price, same brand or frame size weighted higher).

Inferred read-only
search_by_location

Find Cyclesite listings within a radius of a UK location (lat/lng).

Inferred read-only
recommend_bike_for_budget

Curated picks from Cyclesite's live UK inventory for a budget and intent.

Inferred read-only
list_brands

Paginated UK bike-brand catalogue from Cyclesite, ordered by stock level.

Inferred read-only
list_models_for_brand

Models for a brand on Cyclesite (paginated).

Inferred read-only
get_model_info

Cyclesite catalogue entry for a brand+model: category, year range, AI-generated description, key specs, market summary.

Inferred read-only
get_spec_sheet

Aggregated spec sheet for a brand+model[+year], derived from Cyclesite's live UK inventory plus the catalogue record.

Inferred read-only
compare_bikes

Side-by-side comparison of up to 3 bikes (each by brand+model[+year]).

Inferred read-only
get_size_guide

Frame-size recommendation for a rider's height and bike category, the same chart Cyclesite publishes at /bike-size-calculator (height to inside leg to seat tube), refined by real UK listing data where riders' declared heights are available.

Inferred read-only
get_valuation

What a used UK bike is worth right now, Cyclesite's flagship tool.

Inferred read-only
suggest_listing_price

For a seller about to list: suggested ask, floor, and ceiling for their bike's brand+model[+condition] on the UK market.

Inferred read-only
get_market_index

Current UK used-bike market prices by category, from Cyclesite's nightly index.

Inferred read-only
get_market_health

Buyer's-vs-seller's market signal for the UK used-bike market — should the user buy or sell now?

Inferred read-only
get_depreciation

Brands ranked by how well (or poorly) they hold their value, from Cyclesite's measured UK used-price data.

Inferred read-only
get_price_trends

UK used-bike price trends over the last N months by category, from Cyclesite's index series.

Inferred read-only
grade_listing_quality

Categorical quality grade for a Cyclesite listing (excellent / good / fair / weak) plus up to 2 wins and 2 flags.

Inferred read-only
draft_listing

Sell-side helper: turn a seller's raw facts into a polished Cyclesite listing draft (title, description, suggested price, photo plan).

Inferred read-only
check_stolen

Check if a UK bicycle is reported stolen by serial number.

Inferred read-only
report_stolen

Step-by-step guidance for reporting a stolen UK bike: police, insurance, listing alerts.

Inferred read-only
get_buying_guide

Search Cyclesite's expert buying guides (24+ articles by cycling-journalism authors).

Inferred read-only
publish_listing

Publish a Cyclesite listing on the user's behalf.

Potential side effects
list_my_listings

Show the authenticated user's Cyclesite listings (draft / active / sold).

Inferred read-only
mark_as_sold

Mark a Cyclesite listing as sold (optionally with the final sale price).

Inferred read-only
get_my_enquiries

Show buyer enquiries on the authenticated user's Cyclesite listings.

Inferred read-only
get_my_messages

Read the buyer's own Cyclesite message threads and any seller replies.

Potential side effects
respond_to_enquiry

Reply to a buyer enquiry on the authenticated user's listing.

Inferred read-only
search

OpenAI deep-research / company-knowledge compatibility.

Inferred read-only
fetch

OpenAI deep-research / company-knowledge compatibility.

Inferred read-only
save_search

Subscribe the user to alerts for new Cyclesite listings matching a filter — the AI assistant will then proactively notify them when a matching bike appears (price drop or fresh listing).

Potential side effects
make_enquiry

Send an enquiry to a Cyclesite seller on the buyer's behalf.

Potential side effects
reserve_listing

Hold a Cyclesite listing for 24 hours so other buyers can't claim it while the user decides.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.cyclesite]
url = "https://www.cyclesite.co.uk/api/mcp-server"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "cyclesite": {
      "type": "http",
      "url": "https://www.cyclesite.co.uk/api/mcp-server"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: cyclesite
Remote MCP URL: https://www.cyclesite.co.uk/api/mcp-server

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "cyclesite": {
      "url": "https://www.cyclesite.co.uk/api/mcp-server"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "cyclesite": {
      "type": "http",
      "url": "https://www.cyclesite.co.uk/api/mcp-server"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "cyclesite",
  "transport": "streamable-http",
  "url": "https://www.cyclesite.co.uk/api/mcp-server"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Trust Data Available

BuiltWith Trust API v2 evidence for cyclesite.co.uk was fetched 2026-08-01T03:20:59.007Z and is being refreshed.

Trust status Trusted

cyclesite.co.uk is assessed as Trusted: Domain runs a meaningful technology spend, consistent with a real business.

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.