sap-cloud-erp-mcp
Click on "Install 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., "@sap-cloud-erp-mcplist my open purchase orders"
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.
SAP Cloud ERP MCP Server
An MCP (Model Context Protocol) server for SAP S/4HANA Cloud Public Edition, built on
the SDK's released business OData APIs. It exposes list / get / create (/update)
tools for 14 business objects, plus a small number of object-specific actions (e.g.
releasing a production order), for a total of 57 tools.
Object | Tools |
Material (Product) |
|
Material BOM |
|
Purchase Requisition |
|
Purchase Order |
|
Purchase Contract |
|
Sales Quotation |
|
Sales Order |
|
Sales Contract |
|
Production Order |
|
Planned Order |
|
Production Order Confirmation |
|
Production Operation Confirmation |
|
Material Document (goods movement) |
|
Outbound Delivery |
|
Inbound Delivery |
|
s4_production_order_release releases a production order via the OData V2 function
import ReleaseOrder — order status fields are read-only via PATCH, so this is the only
way to release an order through the API.
Setup
npm install
npm run build
cp .env.example .env # fill in your SAP connection detailsRequired env vars (see .env.example):
S4_BASE_URL— your SAP S/4HANA Cloud API base URLS4_AUTH_TYPE—oauth2_client_credentialsorbasicOAuth2:
S4_OAUTH_TOKEN_URL,S4_CLIENT_ID,S4_CLIENT_SECRETBasic:
S4_USERNAME,S4_PASSWORDMCP_TRANSPORT—stdio(default) orhttp;PORTwhen usinghttp
The services must be exposed via a Communication Arrangement in your SAP tenant
(Communication User + the matching Communication Scenario for each API — see the table
below, and the comments at the top of each src/tools/*.ts file for the exact service path).
Related MCP server: ABAP-ADT-API MCP-Server
Running
npm run start # stdio transport, for MCP clients like Claude Desktop
MCP_TRANSPORT=http npm run start # Streamable HTTP on $PORT
npm run inspector # MCP Inspector UI against the stdio serverRegistering with an MCP client
{
"mcpServers": {
"sap-cloud-erp": {
"command": "node",
"args": ["/absolute/path/to/sap-cloud-erp/dist/index.js"],
"env": {
"S4_BASE_URL": "https://your-tenant-api.s4hana.cloud.sap",
"S4_AUTH_TYPE": "basic",
"S4_USERNAME": "...",
"S4_PASSWORD": "...",
"MCP_TRANSPORT": "stdio"
}
}
}
}Verified against a live tenant
list (and CSRF-token acquisition) for the following was confirmed working against a
real S/4HANA Cloud Public Edition tenant: Purchase Order, Purchase Requisition, Sales
Quotation, Sales Contract, Sales Order, Production Order, Planned Order, Material
Document, Outbound Delivery, Inbound Delivery, Production Order Confirmation (both
levels). create (including deep-insert with nested account assignment), update, and
the release action were verified end-to-end for Purchase Order, Production Order,
Sales Order, and Material Document (goods receipt against a PO) against a live tenant.
create was also verified for Sales Order against a mock server — see evaluation/.
Not yet independently verified — these returned SAP-side authorization errors on the original test tenant, not code errors (the error was "no start authorization" / "no authorization to access service group", which happens even when the matching Communication Arrangement exists — it means either the arrangement's Inbound Communication tab doesn't have that specific API checked, or the Communication User's backend role/authorization profile is missing the corresponding authorization object):
s4_material_*(Product,CE_PRODUCT_0002, comm. scenarioSAP_COM_0009)
If you hit this, open the relevant Communication Arrangement in your tenant, check the Inbound Communication → services list, and confirm the Communication User's authorization profile includes that scenario.
Communication Scenarios (confirmed on a live SAP_COM catalog)
Object | Comm. Scenario |
Material |
|
Material BOM |
|
Purchase Requisition |
|
Purchase Order |
|
Purchase Contract |
|
Sales Quotation |
|
Sales Order |
|
Sales Contract |
|
Planned Order |
|
Production Order / Confirmation |
|
Material Document |
|
Outbound / Inbound Delivery |
|
Known limitations
All
additionalFields(create) /fields(update) parameters accept arbitrary extra OData fields as a passthrough, since exact optional-field lists vary by tenant configuration (e.g. account assignment, batch management, variant configuration).No delete/cancel tools are implemented by design — SAP has no hard-delete for these objects, and cancellation flows were explicitly out of scope.
s4_material_document_*,s4_production_order_confirmation_*,s4_production_operation_confirmation_*have no update tool — these SAP objects are immutable once posted (only cancellation exists, which is out of scope).Production order component fields (e.g. batch number) are read-only on the classic OData entity set exposed by this server's
s4_production_order_get; updating them requires the RAP-BO-based component entity, which is not yet wrapped in a dedicated tool (seeCLAUDE.md§3 for the pattern if you need to add one).
Architecture
src/sapClient.ts— shared OAuth2/basic auth, token caching, CSRF token handling, V2/V4 response normalization, OData error-message extraction, andsapCallFunctionImport()for calling OData V2 function imports (actions like release).src/tools/*.ts— one file per business object, each registering its ownlist/get/create(/update) tools with explicit Zod schemas. No shared "generic SAP object" abstraction by design — each object's fields and quirks are handled explicitly.src/index.ts— server bootstrap; registers all tools and starts either the stdio or stateless Streamable HTTP transport based onMCP_TRANSPORT.
See CLAUDE.md for implementation gotchas discovered while building and hardening this
server (OData V2 vs V4 decimal encoding, deep-insert requirements, ETag handling for
function imports, composite-key pitfalls, and more) — read it before modifying
sapClient.ts or adding a new create/update tool.
License
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityAmaintenanceA Model Context Protocol server that facilitates communication between ABAP systems and MCP clients, providing tools for managing ABAP objects, handling transport requests, and performing code analysis to enhance ABAP development workflows.10086175MIT
- AlicenseCquality-maintenanceA Model Context Protocol server that facilitates seamless communication between ABAP systems and MCP clients for managing ABAP objects, transport requests, and code analysis. It acts as a wrapper for the ABAP ADT API to enhance the efficiency of ABAP development workflows.100
- AlicenseCqualityDmaintenanceAn MCP server that enables seamless communication between ABAP systems and MCP clients using the ABAP Development Tools (ADT) API. It provides tools for managing ABAP objects, handling transport requests, and performing code analysis directly through MCP-compatible interfaces.100MIT
- Alicense-qualityDmaintenanceAn MCP server for automating SAP BTP Cloud Foundry operations, providing tools for deploying, managing, and monitoring applications.6MIT
Related MCP Connectors
MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.
MCP server for Appcircle mobile CI/CD platform.
MCP server for interacting with the Supabase platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aytacmehmet/sap-cloud-erp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server