Sáltate la instalación. Funcionando en menos de 2 minutos.
Inicia una prueba gratuita en cloud.anythingmcp.com, añade Zalando Partner (ZDS) con un clic y apunta tu cliente de IA (Claude, ChatGPT, Copilot o Cursor) al endpoint MCP generado. Sin Docker, sin git clone, sin experiencia de desarrollo.
Summary
Zalando's partner APIs for Zalando Direct Ship merchants: orders, order items, shipments, returns, stock and price feeds. OAuth 2.0 client credentials. Partner onboarding required.
Prueba a pedir
Prompts de ejemplo para Zalando Partner (ZDS)
Haz clic en un prompt para copiarlo. Pégalo en Claude, ChatGPT, Cursor, Gemini, Copilot u OpenClaw para ejecutarlo contra este conector.
Claude es IA y puede equivocarse. Verifica siempre las respuestas.
💡 ¿Sin instalación? Usa cloud.anythingmcp.com directamente. Inicia sesión, pulsa Connectors → Zalando Partner (ZDS), pega tus credenciales, genera una MCP API key — listo. Sin Docker, sin
git clone, sin servidor local.
Zalando Partner (ZDS) + Gemini
Zalando's partner APIs for Zalando Direct Ship merchants: orders, order items, shipments, returns, stock and price feeds. OAuth 2.0 client credentials. Partner onboarding required.
Requisitos previos
Las instrucciones de configuración completas están incluidas en el conector (visibles en el store al seleccionarlo). Las variables de entorno requeridas:
ZALANDO_CLIENT_ID, ZALANDO_CLIENT_SECRET, ZALANDO_MERCHANT_ID
Paso 1 — Obtener credenciales
Partner onboarding required. Zalando's merchant APIs are not open: you need an active Zalando Partner Programme contract and credentials issued through Zalando zDirect. There is no self-service signup and no public sandbox, so this adapter ships unverified by design.
Setup
- In zDirect open the API section and create an OAuth 2.0 client for your merchant account. You receive a client id and client secret.
- Note your merchant id — a UUID that scopes every path. Zalando merchants often have several (one per sales channel or country), and the wrong one returns an empty, entirely convincing result.
- …
Paso 2 — Instalar el 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
Paso 3 — Añadir el conector en Gemini
Gemini CLI lee servidores MCP desde ~/.gemini/settings.json (o %APPDATA%\gemini\settings.json en Windows). Añade:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Obtén tu MCP API key desde AnythingMCP → Perfil → MCP API Keys → Nueva Key.
- Guarda el archivo y reinicia
gemini. - Ejecuta
/mcpen la Gemini CLI —Zalando Partner (ZDS)debería aparecer como disponible. - Vertex AI Studio: pasa
https://cloud.anythingmcp.com/mcpal arraytoolsde tu petición con el mismo header Bearer.
Herramientas disponibles
| Tool | What it does |
|---|---|
zalando_zds_list_orders | List orders for the merchant with their order number, date, status and totals |
zalando_zds_get_order | Read one order in full: its items with EAN and price, the delivery address, and the current fulfilment state of each item |
zalando_zds_list_order_items | List the individual items of one order with their EAN, article number, price and per-item status — the level Zalando actually fulfils and ca |
zalando_zds_list_shipments | List shipments the merchant has reported, with their carrier, tracking number, date and the order items they cover |
zalando_zds_list_returns | List returns with their EAN, reason code, date and the order they belong to — the input to any returns-rate analysis |
zalando_zds_list_stock | Read the stock Zalando currently holds for the merchant's EANs, so a discrepancy with the ERP can be found before it becomes an oversell |
zalando_zds_list_prices | Read the prices currently live on Zalando for the merchant's EANs, including any active promotional price and its validity window |
FAQ
¿Gemini 1.5 Pro o 2.x soportan MCP? Sí — Gemini CLI ≥ 0.4 y la API de tools de Vertex AI aceptan conectores MCP httpUrl con header Bearer.
Siguientes pasos
¿Te ha sido útil esta guía?