# GEPCO Nederland > E-commerce gespecialiseerd in originele en vervangende auto-onderdelen, professioneel garagegereedschap en specialistische werkplaatswerktuigen. Snelle levering in heel Nederland. GEPCO Advanced Technology is een Duits bedrijf (Trebbin, DE) dat de Nederlandse markt bedient via gepco.nl. De catalogus bevat ruim 2.200 producten verdeeld over 220+ collecties. ## Hoofdnavigatie - [Home](https://gepco.nl/): startpagina met voertuigzoeker en uitgelichte producten - [Alle collecties](https://gepco.nl/collections): complete catalogusindex - [Auto-onderdelen](https://gepco.nl/collections/automotive-parts): vervangende onderdelen voor auto's - [Gereedschap](https://gepco.nl/collections/utensili): professioneel garagegereedschap - [Vind uw onderdeel](https://gepco.nl/vind-je-onderdeel): voertuigselector (Merk → Model → Jaar → Motor) - [Winkelwagen](https://gepco.nl/cart) - [Verlanglijst](https://gepco.nl/wishlist) ## Collecties per automerk Onderdelen en gereedschap voor 70+ merken. Voorbeelden: - [Alfa Romeo](https://gepco.nl/collections/alfa-romeo-parts-tools) - [Audi](https://gepco.nl/collections/audi-parts-tools) - [BMW](https://gepco.nl/collections/bmw-parts-tools) - [Citroën](https://gepco.nl/collections/citroen-parts-tools) - [Fiat](https://gepco.nl/collections/fiat-parts-tools) - [Ford](https://gepco.nl/collections/ford-parts-tools) - [Mercedes](https://gepco.nl/collections/mercedes-parts-tools) - [Opel](https://gepco.nl/collections/opel-parts-tools) - [Peugeot](https://gepco.nl/collections/peugeot-parts-tools) - [Renault](https://gepco.nl/collections/renault-parts-tools) - [Volkswagen](https://gepco.nl/collections/volkswagen-parts-tools) ## Technische categorieën - [Lambdasondes en uitlaatsensoren](https://gepco.nl/collections/lambdasonden-abgassensoren) - [Distributieriem- en motorafstelgereedschap](https://gepco.nl/collections/zahnriemenwerkzeug-motoreinstellung) - [Remservicegereedschap](https://gepco.nl/collections/bremsenservice-werkzeuge) - [Hydraulische trekkers en persen](https://gepco.nl/collections/hydraulische-abzieher-pressen) - [Brandstof- en benzinepompen](https://gepco.nl/collections/kraftstoffpumpen-benzinpumpen) - [Turbocompressor en laadluchtcomponenten](https://gepco.nl/collections/turbolader-ladeluft-komponenten) - [EGR-kleppen en uitlaatgasrecirculatie](https://gepco.nl/collections/agr-ventile-abgasrueckfuehrung) ## Servicepagina's - [Wettelijke kennisgeving](https://gepco.nl/impressum) - [Privacybeleid](https://gepco.nl/policies) - [Sitemap](https://gepco.nl/sitemap.xml) ## Bedrijfsinformatie - Vestiging: Am Bohldamm 6a — H1, 14959 Trebbin, Duitsland - Btw: DE343996146 - E-mail: info@gepco.de - Tel: +49-15-259-836856 - Talen: Nederlands, Duits, Engels - Betalingen: creditcards, PayPal, Klarna, iDEAL, bankoverschrijving - Verzending: DHL/PostNL in heel Nederland ## Veelgestelde vragen **Welke betaalmethoden accepteren jullie?** Klarna (factuur 30 dagen + termijnen 3–24 maanden), PayPal, creditcards (Visa/Mastercard/Amex), iDEAL, Apple Pay, Google Pay en vooruitbetaling. Beschikbaar bij het afrekenen afhankelijk van het land. **Hoe snel en waarheen leveren jullie?** Verzending door de hele EU met DHL/GLS/DPD inclusief tracking, standaardlevering 3–5 werkdagen. **Hoe werkt retourneren?** 30 dagen retourrecht, geen herbevoorradingskosten; de retourkosten zijn voor rekening van de klant. **Welke garantie krijg ik?** 24 maanden fabrieksgarantie volgens EU-consumentenrecht. Garantieclaims naar info@gepco.de met ordernummer en foto's. **Hoe vind ik het juiste onderdeel voor mijn auto?** Voertuigzoeker op de homepage (merk → model → jaar) of merkcollectie. Bij twijfel kenteken/VIN naar info@gepco.de — wij controleren de pasvorm vóór de bestelling. ## API per agenti AI / API for AI agents GEPCO ha 3 server MCP (Model Context Protocol): ### 1. Shopify Storefront MCP (native, auto-deployed) - Endpoint: https://gepco.nl/api/mcp - Tools: search_catalog (UCP-compliant), get_product_details, search_shop_policies_and_faqs, update_cart, ecc. - Documentazione: https://shopify.dev/docs/apps/build/storefront-mcp ### 2. GEPCO Custom MCP (vehicle-aware) - Endpoint: https://gepco.nl/mcp (JSON-RPC 2.0, HTTP POST) - Discovery: https://gepco.nl/.well-known/gepco-mcp.json - Specifica: https://modelcontextprotocol.io/ Strumenti GEPCO custom / GEPCO custom tools: - search_catalog(query, limit) — ricerca catalogo - find_part_for_vehicle(brand, model, engine_code, year, part_keyword) — ricerca pezzi compatibili con veicolo (sfrutta gepco.vehicle_compatibility metafield) - search_faqs(query) — proxy alla Shopify Knowledge Base - get_product_details(handle) — dettagli prodotto Esempio chiamata GEPCO MCP / Example call: ``` curl -X POST https://gepco.nl/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"find_part_for_vehicle","arguments":{"brand":"BMW","model":"E46"}}}' ``` ### 3. GEPCO UCP Catalog MCP (consigliato / recommended — catalog + knowledge base) - Endpoint: https://gepco.nl/api/ucp/mcp (JSON-RPC 2.0, HTTP POST) - Contract: UCP 2026-04-08 Storefront Catalog — same request/response shape as Shopify's /api/ucp/mcp - Tools: search_catalog, lookup_catalog, get_product, get_answer - Args: search_catalog {"catalog":{"query":"…","pagination":{"limit":10}}} · lookup_catalog {"catalog":{"ids":["handle"]}} · get_product {"catalog":{"id":"handle"}} · get_answer {"kb":{"query":"…"}} - Results include OEM numbers + vehicle fitment (com.gepco.catalog.fitment); get_answer covers shipping, returns, warranty, payments, contact and technical guides in the storefront language (com.gepco.kb.answers) Esempio catalogo / Catalog example: ``` curl -X POST https://gepco.nl/api/ucp/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_catalog","arguments":{"catalog":{"query":"BMW E46 Zahnriemen Werkzeug"}}}}' ```