SAP Integration Content MCP
Allows management of SAP Cloud Integration content, including listing and creating integration packages and flows, configuring externalized parameters, managing resources, deploying and undeploying artifacts, and querying runtime artifacts and service endpoints via the Integration Content OData API.
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 Integration Content MCPList my integration packages"
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.
mcp-ci-pyton — SAP Integration Content MCP
Servidor MCP em Python para a SAP Cloud Integration Content OData API.
Expõe ferramentas para gerenciar Integration Flows (iFlows), pacotes, configurações, recursos, deploy e endpoints de runtime.
Estrutura do Projeto
mcp-ci-pyton/
├── pyproject.toml
├── .env.example
├── README.md
└── src/sap_integration_mcp/
├── server.py # Entry point MCP
├── config.py # Configuração via variáveis de ambiente
├── auth/
│ └── oauth.py # OAuth 2.0 Client Credentials
├── client/
│ └── integration_content.py # Cliente OData HTTP
└── tools/
├── packages.py # IntegrationPackages
├── iflows.py # IntegrationDesigntimeArtifacts
├── deploy.py # DeployIntegrationDesigntimeArtifact
├── runtime.py # IntegrationRuntimeArtifacts
└── endpoints.py # ServiceEndpointsRelated MCP server: MCP Integration Suite Server
Tools Disponíveis
Pacotes (Design)
Tool | Operação OData |
| GET /IntegrationPackages |
| GET /IntegrationPackages('{Id}') |
| POST /IntegrationPackages |
| DELETE /IntegrationPackages('{Id}') |
| POST /CopyIntegrationPackage |
| GET /IntegrationPackages('{Id}')/IntegrationDesigntimeArtifacts |
Integration Flows (Design)
Tool | Operação OData |
| GET /IntegrationDesigntimeArtifacts(Id,Version) |
| POST /IntegrationDesigntimeArtifacts |
| PUT /IntegrationDesigntimeArtifacts(Id,Version) |
| DELETE /IntegrationDesigntimeArtifacts(Id,Version) |
| GET .../$value (ZIP base64) |
| POST /IntegrationDesigntimeArtifactSaveAsVersion |
| GET .../Configurations |
| PUT .../$links/Configurations('{key}') |
| GET .../Resources |
| GET .../Resources(...)/$value |
| PUT .../$links/Resources(...) |
| POST /ExecuteIntegrationDesigntimeArtifactsGuidelines |
| GET .../DesignGuidelineExecutionResults |
Deploy & Runtime (Monitor)
Tool | Operação OData |
| POST /DeployIntegrationDesigntimeArtifact |
| GET /BuildAndDeployStatus(TaskId) |
| GET /IntegrationRuntimeArtifacts |
| GET /IntegrationRuntimeArtifacts('{Id}') |
| DELETE /IntegrationRuntimeArtifacts('{Id}') |
Endpoints
Tool | Operação OData |
| GET /ServiceEndpoints |
Instalação
cd C:\Workspace\mcps\mcp-ci-pyton
python -m venv .venv
# Windows
.venv\Scripts\activate
# Linux/macOS
source .venv/bin/activate
pip install -e .
cp .env.example .env
# Edite .env com suas credenciaisConfiguração
Tenant SAP Cloud Integration (produção)
SAP_CPI_BASE_URL=https://<tenant>-tmn.hci.<region>.hana.ondemand.com
SAP_CPI_TOKEN_URL=https://<subaccount>.authentication.<region>.hana.ondemand.com/oauth/token
SAP_CPI_CLIENT_ID=<client-id>
SAP_CPI_CLIENT_SECRET=<client-secret>Crie um OAuth Client no BTP Subaccount com grant type client_credentials e atribua a role AuthGroup.IntegrationDeveloper (ou equivalente).
SAP API Business Hub (sandbox)
SAP_CPI_BASE_URL=https://sandbox.api.sap.com/cpi
SAP_CPI_API_KEY=<sua-api-key>Registre-se em api.sap.com para obter a API Key.
Uso no Cursor
Adicione ao .cursor/mcp.json (ou configuração global do Cursor):
{
"mcpServers": {
"sap-integration-content": {
"command": "python",
"args": ["-m", "sap_integration_mcp.server"],
"cwd": "C:/Workspace/mcps/mcp-ci-pyton",
"env": {
"SAP_CPI_BASE_URL": "https://your-tenant-tmn.hci.eu10.hana.ondemand.com",
"SAP_CPI_TOKEN_URL": "https://your-subaccount.authentication.eu10.hana.ondemand.com/oauth/token",
"SAP_CPI_CLIENT_ID": "your-client-id",
"SAP_CPI_CLIENT_SECRET": "your-client-secret"
}
}
}
}Ou usando o entry point instalado:
{
"mcpServers": {
"sap-integration-content": {
"command": "mcp-ci-pyton",
"envFile": "C:/Workspace/mcps/mcp-ci-pyton/.env"
}
}
}Exemplos de Uso pelo Agente
"Liste todos os pacotes de integração"
→ list_integration_packages
"Mostre os iFlows do pacote EmployeeCentral"
→ list_package_iflows(package_id="EmployeeCentral")
"Obtenha as configurações externalizadas do iFlow X"
→ get_iflow_configurations(iflow_id="MyFlow", version="active")
"Atualize o parâmetro endpoint_url para https://api.example.com"
→ update_iflow_configuration(iflow_id="MyFlow", version="1.0.0", parameter_key="endpoint_url", parameter_value="https://api.example.com")
"Faça deploy do iFlow MyFlow versão active"
→ deploy_integration_flow(iflow_id="MyFlow", version="active")
"Liste todos os artefatos deployados com status STARTED"
→ list_runtime_artifacts(odata_query="$filter=Status eq 'STARTED'")
"Quais endpoints REST estão expostos?"
→ list_service_endpoints(odata_query="$expand=EntryPoints&$filter=Protocol eq 'REST'")Referências
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
- Alicense-qualityDmaintenanceTransforms SAP S/4HANA or ECC systems into conversational AI interfaces by exposing OData services as dynamic MCP tools. Enables natural language interactions with ERP data for querying, creating, updating, and deleting business entities.Last updated351MIT
- Flicense-qualityFmaintenanceEnables interaction with SAP Integration Suite for designing, creating, and managing integration artifacts including integration flows, message mappings, packages, and B2B trading partner relationships through AI-powered natural language commands.Last updated27
- Alicense-qualityBmaintenanceEnables AI assistants to manage SAP Cloud Integration (CPI) landscapes through natural language by exposing CPI OData APIs as MCP tools.Last updated11MIT
- AlicenseAqualityDmaintenanceConnects Claude to SAP Cloud Platform Integration (CPI) to diagnose failed messages, review iFlows, deploy artifacts, and check credentials directly from your conversation.Last updated136MIT
Related MCP Connectors
Debug, build, and manage Power Automate cloud flows with AI agents
Manage projects, tasks, time tracking, and team collaboration through natural language.
Official Microsoft MCP Server to query Microsoft Entra data using natural language
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/PauloCalazans/mcp-ci-python'
If you have feedback or need assistance with the MCP directory API, please join our Discord server