Connector guide5-minute read2 languages

E-commerce to MCP: Connect Shops to Claude and ChatGPT

Connect Amazon Seller Central, WooCommerce, Shopware, Kaufland, OTTO and 8 more shops and marketplaces to Claude and ChatGPT via MCP. Self-hosted, no code.

HCBy HelpCode teamUpdated 5 min read Open-source on GitHub

No credit card · 7-day trial · Self-host alternative available

  • 7-day free trial
    No credit card required
  • GDPR & SOC 2 ready
    EU data residency, audit logs
  • Open-source on GitHub
    Open source · AGPL-3.0
  • Works with ChatGPT, Claude, Gemini
    Any MCP-compatible client

Summary

Connect Amazon Seller Central, WooCommerce, Shopware, Kaufland, OTTO and 8 more shops and marketplaces to Claude and ChatGPT via MCP. Self-hosted, no code.

TL;DR: AnythingMCP turns your shop and your marketplace accounts into MCP tools for Claude, ChatGPT and Copilot. Thirteen shops and marketplaces have a ready adapter, from Amazon Seller Central and eBay to Kaufland, OTTO and Zalando; install one, authorise it, and ask about orders, stock and returns across all of them in one conversation.

Facts
Ready shop and marketplace adapters13, with 160 tools in total
Other shop systemsVia their REST/OpenAPI or GraphQL API, no code
AI clientsClaude (web, Desktop, Code), ChatGPT, GitHub Copilot, Cursor, any MCP client
HostingSelf-hosted with Docker (open source, AGPL-3.0) or AnythingMCP Cloud (Frankfurt)
GovernanceRead-only roles, per-tool response mapping, audit log
Last verified2026-09-26

Which shops and marketplaces are supported

SystemMarketToolsAuthAnythingMCP Cloud
Amazon Seller CentralGlobal15OAuth 2.0Install
WooCommerceGlobal49User + passwordInstall
Shopware 6 (Store API)DACH6API keyInstall
Magento 2 / Adobe CommerceGlobal12API tokenInstall
BigCommerceGlobal14API keyInstall
eBay SellGlobal10OAuth 2.0Install
EtsyGlobal9OAuth 2.0Install
EcwidGlobal10API tokenInstall
Kaufland MarketplaceDE8HMAC-signed keyInstall
OTTO Market †DE8OAuth 2.0Install
Zalando Direct Ship †EU7OAuth 2.0Install
BillbeeDACH8User + passwordInstall
Mercado LibreLATAM4OAuth 2.0Install

† Built from the vendor's published API documentation and not yet exercised against a live seller account.

What each adapter covers differs, and the setup guides list every tool. Two things to know up front: the Shopware 6 adapter uses the Store API, so it reads the storefront catalog (products, categories, cross-sells) but not orders; and WooCommerce, with 49 tools, is the most complete, including refunds, coupons and reports.

Step 1 — Run AnythingMCP

Shop and marketplace APIs are on the internet, so AnythingMCP Cloud is the quickest start. To keep the credentials in-house, self-host it:

mkdir anythingmcp && cd anythingmcp
curl -fsSLo docker-compose.yml \
  https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d   # → http://localhost:3000

Step 2 — Install one connector per channel

Click Install in the table (Cloud) or open Connectors → Store. Marketplaces with OAuth (Amazon, eBay, Etsy, OTTO, Zalando, Mercado Libre) send you to the vendor to authorise; the others ask for an API key or a user and password. Put every channel on the same MCP server and the AI can compare them in one answer.

Step 3 — Keep writes behind a role

Most marketplace adapters only read. The shop systems can also change data: WooCommerce, Magento, BigCommerce and Ecwid can create or update products and orders, OTTO Market can update stock and prices, eBay can update an offer's price. Give the AI a read-only role first and add write tools deliberately.

Step 4 — Connect Claude, ChatGPT or Copilot

  • Claude: Customize → Connectors → Add custom connector, paste the MCP server URL (step by step).
  • ChatGPT: add the public HTTPS URL as a connector (app) in ChatGPT's settings.
  • Claude Code, Cursor, VS Code / Copilot: add the URL with an X-API-Key header.

Example prompts

  • "Which orders from yesterday have not shipped yet, on Kaufland and OTTO?"
  • "Which products are low on stock in WooCommerce, and how fast did they sell last month?"
  • "Summarise this week's returns by reason across all channels."
  • "What are the Amazon fees on SKU A-1043 at 24.90 EUR?"
  • "Which Etsy reviews this month are below four stars, and what do they say?"
  • "Raise the price of offer 1234 on eBay to 39 EUR." (write tool, needs an explicit role)

Security and governance

  • Roles decide the tools: an MCP server exposes only the tools its role whitelists.
  • Response mapping strips customer addresses, phone numbers or payment details before they reach the model.
  • Audit log: every call with input, output, duration and status.
  • Credentials are encrypted with AES-256-GCM; OAuth tokens are refreshed automatically.

FAQ

How do I connect my shop to Claude? Install your shop's adapter in AnythingMCP, authorise it, and add your MCP server URL to Claude as a custom connector.

Can I ask about several marketplaces at once? Yes. Put all your channel connectors on one MCP server; the AI calls each and combines the answers.

Can ChatGPT use it too? Yes, as a connector with the public HTTPS URL of your MCP server, for example on AnythingMCP Cloud.

Can the AI change prices, stock or orders? Only through write tools, and only if a role gives it access. Most marketplace adapters only read.

My shop system is not in the list. Can I still connect it? If it has a REST API with an OpenAPI spec, import the spec (OpenAPI to MCP); GraphQL APIs work the same way (GraphQL to MCP).

Does customer data reach the AI provider? Only the fields a tool returns, and response mapping lets you drop personal data before it leaves your AnythingMCP instance.

AnythingMCP vs a marketplace's own MCP server vs a custom integration

AnythingMCPOne vendor's MCP serverA custom integration
Channels in one MCP server13 ready, others via REST or GraphQLOneWhatever you build
Your ERP and shipping in the same serverYesNoIf you build them
Code to writeNoneNoneAll of it
Access control and auditRoles, response mapping, audit logVariesWhatever you build

Related

Was this guide helpful?

Ship MCP to your stack in 60 seconds.

Spin up AnythingMCP on managed Cloud or self-host it on your infrastructure. Free for 7 days, no credit card.

Related guides