← bikefuchs.com

INDIVIDUAL MCP TOOL

get_shipping_breakdown

Return the exact shipping cost for a specific shop, country, and cart value, including all shipping tiers and how much more is needed to reach the next free-shipping threshold.

bikefuchs.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.bikefuchs.com/mcp

No auth detected

Connect to this endpoint to inspect the live schema for get_shipping_breakdown and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

bikefuchs.com

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.bikefuchs]
url = "https://mcp.bikefuchs.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "bikefuchs": {
      "type": "http",
      "url": "https://mcp.bikefuchs.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: bikefuchs
Remote MCP URL: https://mcp.bikefuchs.com/mcp

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": {
    "bikefuchs": {
      "url": "https://mcp.bikefuchs.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "bikefuchs": {
      "type": "http",
      "url": "https://mcp.bikefuchs.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "bikefuchs",
  "transport": "streamable-http",
  "url": "https://mcp.bikefuchs.com/mcp"
}
MCP Inspector

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

Related tools

  • search_product — Search for bicycle parts, components, accessories, and cycling clothing by name, brand, or model number.
  • get_best_price — Look up a single product by its EAN barcode and return the price at every shop that carries it, sorted cheapest-first, with stock status and direct purchase links.
  • optimize_cart — Find the cheapest way to buy multiple products together: computes the optimal split across shops — which items to order from which shop — accounting for each shop's shipping costs and free-shipping thresholds, and returns the lowest achievable total including shipping.
  • get_shop_info — Return an overview of the supported shops, including their shipping cost tiers, free-shipping thresholds, and supported countries (DE and AT).
  • find_alternatives_for_product — Given a product's EAN barcode, return every shop that carries it with prices and availability, sorted cheapest-first.
  • resolve_product — Turn a product page URL from a supported shop into structured product data — EAN barcode, price, stock status, and a purchase link — so the EAN can then be used with get_best_price or optimize_cart.