MCP for developers
Read-only marine parts catalog access through Model Context Protocol.
Current status
Connect to the hosted Streamable HTTP endpoint at https://mcp.boatpartfinder.ai/mcp. The endpoint is live and exposes five read-only catalog tools. Transient catalog failures return temporary_unavailable.
Start with initialize, retain the returned Mcp-Session-Id response header, send it on later requests, and complete the standard notifications/initialized handshake before calling tools. Rate limits apply; a rate-limited request returns 429 with Retry-After.
Catalog tools
The endpoint exposes five read-only tools. New integrations should use the first three; the final two remain available for compatibility.
product_searchsearches by text and structured filters. Provide at least one ofquery, canonicalbrand_slugs, canonicalcategory_slugs, or a canonicalfacetsmap. The only sort values arerelevance,name_asc, andname_desc. Requests may include facet counts and return 1-25 products per page (default 20).product_fetchreturns one public product record by its public productid, including its facets.catalog_optionsdiscoversbrands,categories,facet_fields, orfacet_values. Usefacet_keywithfacet_values. Results are limited to 1-25 options (default and maximum 25).product_lookupremains available for compatibility.brand_directoryremains available for compatibility.
Structured search example
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "product_search",
"arguments": {
"query": "winch",
"brand_slugs": ["lewmar"],
"category_slugs": ["winches"],
"page_size": 20,
"include_facets": true
}
}
}A request accepts up to 10 brand slugs and 10 category slugs, plus 12 facet fields with up to 20 values each. Brand and category slugs are case-normalized before strict format validation. Facet keys are case-normalized and convert spaces to hyphens. Unknown properties and type coercion are rejected. Use catalog_options to discover current canonical slugs and facet values.
Pagination and errors
product_search and catalog_options may return a next_cursor. Cursors are opaque, signed, expire after 15 minutes, and are bound to the original request. Pass the cursor back unchanged with the same request. Expired, modified, or mismatched cursors return invalid_cursor.
Tool failures use stable public codes: invalid_arguments, invalid_cursor, not_found, and temporary_unavailable. Internal service and database details are not exposed.
Public-data boundary
Product records use the same public field names as the website: id, slug, name, description, long_description, manufacturer_name, oem_number, gtin_ean, default_image_url, brand, category, category_breadcrumb, web_url, images, and product_details. Brand and category records expose name and slug; breadcrumb records expose slug, name, and web_url; product details expose detail_name and detail_value. product_fetch additionally exposes facets with key, label, and values.
Product records do not expose fitment, compatibility, boat, model, year, serial, evidence, provenance, private, scraper, affiliate, or internal identifiers. The public product id is the only identifier accepted by product_fetch. Do not treat a result as a vessel-fitment claim.
Legacy clients
Existing product_lookup and brand_directory tool names remain available for compatibility. New integrations should use product_search, product_fetch, and catalog_options for the canonical public schemas and cursor pagination.
Connection and terms
No client package is required. Configure an MCP client that supports Streamable HTTP with https://mcp.boatpartfinder.ai/mcp.
The hosted MCP endpoint is operated by Oish AB and is subject to the terms of service.
Attribution
product_search and product_fetch return canonical BoatPartFinder.ai product web_url links containing an mcp_ref value. The compatibility tools product_lookup and brand_directory additionally return the attribution Powered by BoatPartFinder.ai.
Contact
If you are a developer or marine-software vendor with questions about the MCP server, email info@boatpartfinder.ai with subject MCP.