Salta l'installazione. Attivo in meno di 2 minuti.
Avvia una prova gratuita su cloud.anythingmcp.com, aggiungi Kaufland Marketplace con un clic, poi punta il tuo client AI (Claude, ChatGPT, Copilot o Cursor) all'endpoint MCP generato. Niente Docker, niente git clone, nessuna esperienza di sviluppo richiesta.
Summary
Kaufland Marketplace (formerly real.de) seller API: orders and their units, shipments, storefront listings, units, tickets and warehouses. HMAC-signed requests — the signature covers the method, URL, body and a timestamp.
Prova a chiedere
Prompt di esempio per Kaufland Marketplace
Clicca su un prompt per copiarlo. Incollalo in Claude, ChatGPT, Cursor, Gemini, Copilot o OpenClaw per eseguirlo contro questo connettore.
Claude è un'AI e può sbagliare. Verifica sempre le risposte.
💡 Niente installazione? Vai direttamente su cloud.anythingmcp.com. Accedi, clicca Connectors → Kaufland Marketplace, inserisci le credenziali, genera una MCP API key — fatto. Niente Docker, niente
git clone, niente server locale.
Kaufland Marketplace + Gemini
Kaufland Marketplace (formerly real.de) seller API: orders and their units, shipments, storefront listings, units, tickets and warehouses. HMAC-signed requests — the signature covers the method, URL, body and a timestamp.
Prerequisiti
Le istruzioni di setup complete sono incluse nel connettore stesso (visibili nello store quando lo selezioni). Le variabili d'ambiente richieste sono:
KAUFLAND_CLIENT_KEY, KAUFLAND_SECRET_KEY
Step 1 — Ottieni le credenziali
Getting credentials
- You must already be a Kaufland Marketplace seller. In the Seller Portal open Settings → API keys and create a key pair.
- You receive a Client Key (public, identifies you) and a Secret Key (never sent — it signs the request). Set
KAUFLAND_CLIENT_KEYandKAUFLAND_SECRET_KEY.
The secret never travels. Kaufland does not accept a bearer token: every request carries Shop-Client-Key, Shop-Timestamp and Shop-Signature, where the signature is an HMAC-SHA256 over the canonical string
<METHOD>\n<FULL URL INCLUDING QUERY>\n<BODY>\n<UNIX TIMESTAMP>\n
…(continued in the in-app connector instructions)
Step 2 — Installa l'adapter
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
Step 3 — Aggiungi il connettore in Gemini
Gemini CLI legge i server MCP da ~/.gemini/settings.json (o %APPDATA%\gemini\settings.json su Windows). Aggiungi:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Ottieni la tua MCP API key da AnythingMCP → Profilo → MCP API Keys → Nuova Key.
- Salva il file e riavvia
gemini. - Esegui
/mcpnella Gemini CLI —Kaufland Marketplacedovrebbe essere elencato come disponibile. - Vertex AI Studio: passa
https://cloud.anythingmcp.com/mcpnell'arraytoolsdella richiesta con lo stesso header Bearer.
Tool disponibili
| Tool | What it does |
|---|---|
kaufland_list_warehouses | List the seller's warehouses with their id, name and address |
kaufland_list_orders | List orders in a time window with their buyer, storefront, totals and status |
kaufland_get_order | Read one order in full: the buyer, the delivery address, the payment and every order unit with its own price, status and fulfilment state |
kaufland_list_order_units | List individual order units — the level Kaufland actually fulfils, cancels and pays out at |
kaufland_list_units | List the seller's units (offers) with their EAN, condition, price, stock and the storefront each is listed on |
kaufland_list_shipments | List reported shipments with their carrier, tracking number and the order units they cover — the answer to whether something has actually go |
kaufland_list_tickets | List customer service tickets with their subject, status and the order they relate to — where a buyer complaint shows up before it becomes a |
kaufland_list_storefronts | List the storefronts this seller is active on, with the currency and locale of each |
FAQ
Gemini 1.5 Pro o 2.x supportano MCP? Sì — Gemini CLI ≥ 0.4 e la Vertex AI tools API accettano connettori MCP httpUrl con header Bearer.
Prossimi passi
Questa guida ti è stata utile?