OTTO Market MCP Server
Provides tools for interacting with the OTTO Market partner API, allowing users to list and read orders, products, stock quantities, and returns, as well as update stock and prices for their marketplace listings.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@OTTO Market MCP ServerList orders not shipped since Monday"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
OTTO Market MCP Server
English · Deutsch
Connect OTTO Market to Claude, ChatGPT and Copilot: orders, products, returns, stock and price updates as MCP tools. Powered by AnythingMCP.
OTTO Market MCP Server gives Claude, ChatGPT, Copilot and Cursor 8 tools for OTTO Market: orders, products, returns, stock and price updates. 6 tools read and 2 can change data. It runs on AnythingMCP: one click on AnythingMCP Cloud, or self-hosted with Docker. Credentials are stored encrypted and every call is audited.
Status: not yet verified against a live system. The adapter follows the vendor's API documentation; please report what you find.
Adapter synced: 2026-09-26
Maintained by KOCH Freiburg GmbH, which runs AnythingMCP in production. Built on AnythingMCP by helpcode.ai.
Quick start (AnythingMCP Cloud)
Sign in at cloud.anythingmcp.com and open the install link.
Enter
OTTO_USERNAME,OTTO_PASSWORD(see Authentication).Copy the URL of your MCP server under MCP Servers and add it to your AI client (below).
AnythingMCP Cloud is the same open-source code, operated by helpcode.ai in Frankfurt, Germany.
Related MCP server: Amazon Seller MCP Server
Self-hosted (Docker)
Needs Docker 24+, openssl and Node 18+.
git clone https://github.com/kochfreiburg/otto-market-mcp-server.git
cd otto-market-mcp-server
./scripts/install.shinstall.sh writes .env with fresh secrets, starts AnythingMCP, creates the first admin, installs the connector if OTTO_USERNAME and OTTO_PASSWORD are set in .env and creates an MCP API key. Without credentials it prints the install link instead: http://localhost:3000/connectors/store?install=otto-market. Then check the whole chain:
npm install && node scripts/smoke.mjsConnect Claude, ChatGPT, Copilot or Cursor
Claude (claude.ai, Desktop, mobile): Customize → Connectors → Add custom connector, paste your MCP server URL and sign in. Claude connects from Anthropic's cloud, so the URL must be public HTTPS: your AnythingMCP Cloud URL, or your own instance behind TLS.
Claude Code:
claude mcp add --transport http otto-market-mcp-server http://localhost:4000/mcp --header "X-API-Key: <MCP_API_KEY>"Cursor (
.cursor/mcp.json) and VS Code / GitHub Copilot (.vscode/mcp.json, keyserversinstead ofmcpServers, plus"type": "http"):{ "mcpServers": { "otto-market-mcp-server": { "url": "http://localhost:4000/mcp", "headers": { "X-API-Key": "<MCP_API_KEY>" } } } }ChatGPT: add the public HTTPS URL as a connector (app) in ChatGPT's settings. A
localhostURL does not work there.
Tools
8 tools, generated from adapter/otto-market.json. read tools cannot change anything in the source system.
Tool | What it does | Access |
| List orders from a date onwards, with their positions, buyer, delivery address and fulfilment status. | read |
| Read one order in full: every position with SKU, price and status, the delivery and invoice addresses, and the payment method. | read |
| List the seller's product variations with their SKU, EAN, product reference and current market status on otto.de. | read |
| Read one product variation by SKU: its attributes, category, media and the current status of its listing on otto.de. | read |
| Read the current stock quantities OTTO holds for the seller's SKUs, so a discrepancy with the ERP can be spotted. | read |
| List returns with their SKU, quantity, reason and the order they belong to — the input to any returns-rate question. | read |
| Set the available stock for one SKU. | write |
| Set the price for one SKU. | write |
Example prompts
Which OTTO orders since Monday are not shipped yet?
Show order 1234567 with every position and the delivery address.
Which returns came in this week, and what were the reasons?
What stock does OTTO show for SKU DR-1001, and does it match our ERP?
Which of my products are not live on otto.de, and why?
Set the stock of SKU LK-2040 to 50 on OTTO. (write)
More in examples/prompts.md.
Authentication
Getting credentials
You must already be an OTTO Market partner. In the OTTO Partner Connect portal open the API area and create API credentials for your account.
OTTO issues a username and password for the token endpoint rather than a classic client id/secret pair; the token request is a password grant against
https://api.otto.market/v1/token.Set
OTTO_USERNAMEandOTTO_PASSWORD. AnythingMCP exchanges them for an access token and refreshes it automatically.
Every endpoint is versioned separately. OTTO versions per resource, not per API: orders are on /v4/orders, quantities on /v1/quantities, prices on /v3/prices. The tools below carry the version each resource is actually on — do not assume one prefix works everywhere.
Orders page with a cursor. otto_market_list_orders returns nextCursor; pass it back as nextCursor to walk the list. Do not compute an offset; OTTO's order stream is append-only and offsets drift.
fromOrderDate is required and is a hard filter. Asking without it returns the default window, which is much shorter than most people expect. State the date you mean.
Stock and price are eventually consistent. A quantity update is accepted with a 202 and applied asynchronously; reading the value back immediately will often still show the old number. That is OTTO's design, not a failed write.
Unverified. The paths and field names below follow the vendor's published documentation and have not been exercised against a live tenant. Treat a 404 as a docs-versus-reality gap and check the developer portal before concluding that the credential is wrong. A correction from anyone running this against a real system is genuinely welcome.
Writes: otto_market_update_quantity and otto_market_update_price change what shoppers on otto.de see.
Security
Read or write is your choice. 6 of the tools only read;
otto_market_update_quantity,otto_market_update_pricecan change data. Assign the connector to an MCP server whose role whitelists only the tools you want, and the rest are invisible to that client.Credentials are encrypted with AES-256-GCM and never shown to the model.
Response mapping drops or reshapes fields per tool before they reach the model, e.g. bank details or personal data.
Audit log: every call is recorded with input, output, duration and status, in your own database when self-hosted.
SSO, RBAC and SCIM are included in the self-hosted build.
FAQ
Is there an OTTO Market MCP server?
Yes, this one. It connects the OTTO Market partner API to Claude, ChatGPT and Copilot through AnythingMCP: 8 tools for orders, products, stock, returns, and stock and price updates.
What do I need to connect it?
An OTTO Market partner account and API credentials from OTTO Partner Connect. OTTO issues a username and password for its token endpoint; AnythingMCP exchanges them for an access token and renews it.
Can the AI change stock or prices?
Yes, two tools can: otto_market_update_quantity and otto_market_update_price. OTTO applies both asynchronously, so a read straight afterwards may still show the old value. Leave them off the MCP server's role if the AI should only read.
Has this been tested against a live OTTO account?
Not yet. The adapter follows OTTO's published API documentation. If you run it against your account, please report what works and what doesn't.
Troubleshooting
Problem | Fix |
| The credentials are wrong or lack rights. Re-enter them on the connector page; the import runs a test call and shows the result. |
Tools missing in the AI client | The connector is not assigned to the MCP server the client uses. Check MCP Servers, then run |
The host is on your internal network | Self-host AnythingMCP on that network and add the hostname to |
Works locally, fails on AnythingMCP Cloud | The system must be reachable from the internet with a valid TLS certificate. |
Related
ecommerce-mcp-server: E-commerce MCP server: connect Amazon, eBay, WooCommerce, Shopware, Kaufland, OTTO and 7 more to Claude & ChatGPT.
kaufland-mcp-server: Kaufland Marketplace MCP server: Claude & ChatGPT read your Kaufland seller orders, units, shipments, tickets and storefronts.
billbee-mcp-server: Billbee MCP server: connect Billbee order management to Claude & ChatGPT. Orders, products, customers and shipping providers.
AnythingMCP: the open-source MCP server and gateway this repository is built on.
License
AGPL-3.0-only. The adapter definition in adapter/ comes from AnythingMCP (AGPL-3.0).
This server cannot be deployed
Maintenance
Related MCP Connectors
- VendoolyOAuthcom.vendooly
Amazon Seller Central and Amazon Ads for AI assistants: catalog, orders, FBA, pricing, PPC.
Run storefronts, listings, orders, content, fulfillment, and analytics through AI.
Run an eBay seller account from your AI assistant: orders, listings, stock, fees and payouts.
Operate Obriym CRM from your AI assistant: leads, deals, orders, catalog, stock, marketplaces.
Related MCP Servers
- AlicenseAqualityDmaintenanceIntegrates with Yandex Market Partner API, providing search and execute tools for managing orders, returns, shipments, offers, prices, and other seller operations via natural language.181MIT
- AlicenseNot gradedqualityCmaintenanceExposes Amazon Selling Partner API tools for sellers to manage orders, inventory, listings, pricing, analytics, and reports via natural language.4 npm1AGPL 3.0
- FlicenseNot gradedqualityDmaintenanceEnables managing Amazon seller accounts directly from an AI assistant, with tools for listings, orders, pricing, inventory, and multi-marketplace switching.-
- AlicenseAqualityBmaintenanceEnables Turkish e-commerce sellers to manage Trendyol marketplace store operations through AI assistants, including viewing products, orders, returns, and customer questions, with optional guarded write actions for answering questions and updating stock and prices.6MIT