No install? Use cloud.anythingmcp.com directly.
Sign in, install the SAP S/4HANA Cloud in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.
TL;DR
Drive SAP S/4HANA Cloud Public Edition from any AI agent: business partners, customers, suppliers, sales orders, purchase orders, billing documents, products, journal entries. OAuth 2.0 client_credentials via BTP Communication Arrangement.
💡 Keine Installation? Nutze cloud.anythingmcp.com direkt. Einloggen, Connectors → SAP S/4HANA Cloud klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein
git clone, kein lokaler Server.
SAP S/4HANA Cloud + Gemini
Drive SAP S/4HANA Cloud Public Edition from any AI agent: business partners, customers, suppliers, sales orders, purchase orders, billing documents, products, journal entries. OAuth 2.0 client_credentials via BTP Communication Arrangement.
Voraussetzungen
Die vollständige Setup-Anleitung ist in den Connector eingebaut (im Store sichtbar, wenn du den Connector auswählst). Benötigte Umgebungsvariablen für diesen Connector:
S4_BASE_URL, S4_TOKEN_URL, S4_CLIENT_ID, S4_CLIENT_SECRET
Schritt 1 — Zugangsdaten holen
Setup (one-off, done by the S/4 admin):
- In your S/4HANA Cloud tenant open Communication Arrangements and create one for SAP_COM_0008 — Business Partner Integration (and others as needed: 0109 Sales Order, 0026 Purchase Order, 0186 Billing).
- Create a Communication User + Communication System. Pick OAuth 2.0 as the authentication method, grant type Client Credentials.
- S/4 generates a
Client ID,Client Secret, and a per-tenant Token URL likehttps://my300000.authentication.eu10.hana.ondemand.com/oauth/token. - The tenant Base URL is
https://my300000.s4hana.cloud.sap(your tenant ID replaces 300000). - Set the four env vars below.
…(continued in the in-app connector instructions)
Schritt 2 — Adapter installieren
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
Schritt 3 — Connector in Gemini hinzufügen
Gemini CLI liest MCP-Server aus ~/.gemini/settings.json (oder %APPDATA%\gemini\settings.json unter Windows). Hinzufügen:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Hole deinen MCP API Key aus AnythingMCP → Profil → MCP API Keys → Neuer Key.
- Speichern und
geminineu starten. /mcpin Gemini CLI ausführen —SAP S/4HANA Cloudsollte als verfügbar gelistet sein.- Vertex AI Studio:
https://cloud.anythingmcp.com/mcpimtools-Array der Anfrage mit demselben Bearer-Header übergeben.
Verfügbare Tools
| Tool | What it does |
|---|---|
s4_list_business_partners | List business partners (combined customers + suppliers) from API_BUSINESS_PARTNER |
s4_get_business_partner | Get one business partner by its 10-character ID |
s4_list_customers | List customer master records (subset of business partners) |
s4_list_suppliers | List supplier master records (subset of business partners) |
s4_list_sales_orders | List sales orders (headers) |
s4_get_sales_order | Get one sales order by its 10-char number |
s4_list_sales_order_items | List the items (line entries) of a given sales order |
s4_list_purchase_orders | List purchase orders (headers) |
s4_get_purchase_order | Get one purchase order by its 10-char number |
s4_list_billing_documents | List billing documents (customer invoices, credit memos) |
s4_list_outbound_deliveries | List outbound delivery headers (goods leaving the warehouse) |
s4_list_journal_entries | List journal entry items (general ledger postings) |
s4_list_products | List materials / products (item master) |
s4_get_product | Get one product/material by its ID |
s4_list_purchase_requisitions | List purchase requisition items (pre-PO demand requests) |
FAQ
Unterstützen Gemini 1.5 Pro oder 2.x MCP? Ja — Gemini CLI ≥ 0.4 und die Vertex AI Tools API akzeptieren MCP httpUrl-Connectors mit Bearer-Header.
Nächste Schritte
War dieser Guide hilfreich?