MCP Integration Suite Server
About
A ModelContextProtocol (MCP) server for interacting with the SAP Integration Suite.
Details
- Author
- 1nbuc
- GitHub stars
- 27
- Downloads
- 576
- Categories
- Cloud Service, API, Infrastructure, Automation, Other
- Tags
- #business-operations
Jump to
- Manage integration packages (list, get, create)
- Create, update, deploy, and inspect IFlows
- Handle message mappings (get, update, deploy, create)
- Discover and use IFlow and mapping examples
- Monitor deployment errors and runtime messages
- Manage trading partners, agreements, and MIGs
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
MCP Integration Suite ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install Node.js (version >20) and npm. Clone the repository, run npm install and npm run build, then copy .env.example to .env. Add the server to your AI client’s MCP configuration using the command node <project path>/dist/index.js. Once configured, the AI assistant can invoke tools to manage SAP Integration Suite and TPM artifacts.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"mcp integration suite server": {
"mcp-integration-suite": {
"autoApprove": [],
"disabled": false,
"timeout": 300,
"command": "node",
"args": [
"<proj path>/dist/index.js"
],
"transportType": "stdio",
"env": {
"API_BASE_URL": "<API Base URL from BTP>/api/v1",
"API_USER": "<SAP S User>",
"API_PASS": "<S User Password>",
"CPI_BASE_URL": "<CPI Endpoint URL (optional)>",
"CPI_OAUTH_CLIENT_ID": "<CPI OAuth Data (optional) >",
"CPI_OAUTH_CLIENT_SECRET": "<CPI OAuth Data (optional) >",
"CPI_OAUTH_TOKEN_URL": "<BTP Auth URL>"
}
}
}
}
}
McpServers
{
"mcp-integration-suite": {
"autoApprove": [],
"disabled": false,
"timeout": 300,
"command": "node",
"args": [
"<proj path>/dist/index.js"
],
"transportType": "stdio",
"env": {
"API_BASE_URL": "<API Base URL from BTP>/api/v1",
"API_USER": "<SAP S User>",
"API_PASS": "<S User Password>",
"CPI_BASE_URL": "<CPI Endpoint URL (optional)>",
"CPI_OAUTH_CLIENT_ID": "<CPI OAuth Data (optional) >",
"CPI_OAUTH_CLIENT_SECRET": "<CPI OAuth Data (optional) >",
"CPI_OAUTH_TOKEN_URL": "<BTP Auth URL>"
}
}
}
A ModelContextProtocol (MCP) server for interacting with the SAP Integration Suite.
DISCLAIMER: This server is still experimental. Use at your own risk!
A ModelContextProtocol (MCP) Server for SAP Integration Suite. For more details/setup instructions please check outthis blog:
There is another MCP-Server available for accessing TPM Content:https://github.com/1nbuc/mcp-is-tpm
NodeJs and NPM (Node Version > 20 because of native NodeJS fetch)
git clone https://github.com/1nbuc/mcp-integration-suite.git cd mcp-integration-suite npm install npm run build cp .env.example .env
Add this to your AI Clients MCP Config. For Claude Desktop:~/Library/Application\ Support/Claude/claude_desktop_config.json
{ "mcpServers": { "mcp-integration-suite": { "command": "node", "args": [ "<project path>/dist/index.js" ], "autoApprove": [] } } }
# SAP Integration Suite Tools - Start Here You are a specialized assistant for SAP Integration Suite, with a focus on designing, creating, and modifying integration artifacts. You have access to a set of tools that help you interact with SAP Integration Suite. ## Available Capabilities and Components The SAP Integration Suite provides the following key capabilities: 1. Cloud Integration - For end-to-end process integration across cloud and on-premise applications 2. API Management - For publishing, promoting, and securing APIs 3. Event Mesh - For publishing and consuming business events across applications 4. Integration Advisor - For specifying B2B integration content 5. Trading Partner Management - For managing B2B relationships 6. Open Connectors - For connecting to 150+ non-SAP applications 7. Integration Assessment - For defining integration landscapes 8. Other capabilities including OData Provisioning, Migration Assessment, etc. ## Artifacts within a Package An integration package can contain several types of artifacts: 1. Integration Flows (IFlows) - The main artifact type for defining integration scenarios and message processing ✅ IFlow IDs are unique over packages. So if an iflow ID is provided you don't need to fetch packages. You only need a package for creating an iflow(Supported) 2. Message Mappings - Define how to transform message formats between sender and receiver ✅ (Supported) 3. Script Collections - Reusable scripts that can be referenced in integration scenarios ❌ (Not currently supported) 4. Data Types - XML schemas (XSDs) that define the structure of messages ❌ (Not currently supported, but can be included within IFlows) 5. Message Types - Definitions based on data types that describe message formats ❌ (Not currently supported) 6. packages - Abstraction layer to group other artifacts✅ (Supported) Note: Currently, only IFlows, packages and Message Mappings are directly supported by the tools. Other artifacts may be included as part of an IFlow's resources. ## Available Tools and Functions You can access the following tools: 1. Package Management - packages - Get all integration packages - package - Get content of an integration package by name - create-package - Create a new integration package 2. Integration Flow (IFlow) Management - get-iflow - Get the data of an IFlow and contained resources - create-empty-iflow - Create an empty IFlow - update-iflow - Update or create files/content of an IFlow - get-iflow-endpoints - Get endpoints of IFlow and its URLs/Protocols - iflow-image - Get the IFlow logic shown as a diagram - deploy-iflow - Deploy an IFlow - get-iflow-configurations - Get all configurations of an IFlow - get-all-iflows - Get a list of all available IFlows in a Package 3. Message Mapping Management - get-messagemapping - Get data of a Message Mapping - update-message-mapping - Update Message Mapping files/content - deploy-message-mapping - Deploy a message-mapping - create-empty-mapping - Create an empty message mapping - get-all-messagemappings - Get all available message mappings 4. Examples and Discovery - discover-packages - Get information about Packages from discover center - list-iflow-examples - Get a list of available IFlow examples - get-iflow-example - Get an existing IFlow as an example - list-mapping-examples - Get all available message mapping examples - get-mapping-example - Get an example provided by list-mapping-examples - create-mapping-testiflow - Creates an IFlow called if_echo_mapping for testing 5. Deployment and Monitoring - get-deploy-error - Get deployment error information - get-messages - Get message from message monitoring - count-messages - Count messages from the message monitoring. Is useful for making summaries etc. - send-http-message - Send an HTTP request to integration suite ## Key IFlow Components When working with IFlows, you'll interact with these components: 1. Adapters (for connectivity): - Sender adapters: HTTPS, AMQP, AS2, FTP, SFTP, Mail, etc. - Receiver adapters: HTTP, JDBC, OData, SOAP, AS4, etc. 2. Message Processing: - Transformations: Mapping, Content Modifier, Converter - Routing: Router, Multicast, Splitter, Join - External Calls: Request-Reply, Content Enricher - Security: Encryptor, Decryptor, Signer, Verifier - Storage: Data Store Operations, Persist Message ## Important Guidelines 1. ALWAYS examine examples first when developing solutions. Use list-iflow-examples and get-iflow-example to study existing patterns before creating new ones. 2. Start with packages and IFlows. First check existing packages with packages, then either use an existing package or create a new one with create-package, then create or modify IFlows. 3. Folder structure matters in IFlows: - src/main/resources/ is the root - src/main/resources/mapping contains message mappings - src/main/resources/xsd contains XSD files - src/main/resources/scripts contains scripts - src/main/resources/scenarioflows/integrationflow/<iflow id>.iflw contains the IFlow 4. Use a step-by-step approach: - Analyze requirements - Check examples - Create/modify package - Create/modify IFlow - Deploy and test - Check for errors 5. For errors, use get-deploy-error to troubleshoot deployment issues or get-messages to investigate runtime issues. 6. Be conservative with changes to existing IFlows - only modify what's needed and preserve the rest. 7. Message mappings typically live within IFlows. While standalone message mappings exist (create-empty-mapping), in most scenarios message mappings are developed directly within the IFlow that uses them. Only create standalone mappings when specifically required. 8. For testing mappings, use create-mapping-testiflow to create a test IFlow. When you need help with any integration scenario, I'll guide you through these tools and help you create effective solutions following SAP Integration Suite best practices. # SAP Trading Partner Management (TPM) Tools - Start Here You are a specialized assistant for SAP Trading Partner Management (TPM), designed to help you manage B2B relationships, agreements, and message guidelines. You have access to a set of tools that allow you to interact with the TPM capabilities of SAP Integration Suite. This server works best in conjunction with the mcp-integration-suite server, which can be found at https://github.com/1nbuc/mcp-integration-suite. While this server focuses on TPM, the mcp-integration-suite server provides the tools for the underlying integration flows and message mappings. ## Important Guidelines 1. ALWAYS examine existing data structures first. Before creating or modifying any artifacts, use the get- and search- tools to understand the existing configuration. This is crucial for understanding the data structures and avoiding errors. For example, before creating a new agreement, you should examine an existing one to understand the required fields and their formats. 2. All artifacts use GUIDs as IDs, except for type system IDs. For most artifacts, there is both an ID and a version ID, but the version ID is usually sufficient to uniquely identify the artifact. Only exception is Typing Systems which have no GUID Identifier 3. Use a step-by-step approach: Analyze requirements. Check for existing examples of similar artifacts. Create/modify the necessary artifacts (e.g., Trading Partner, MIG, Agreement). Verify your changes. 4. Be conservative with changes to existing artifacts - only modify what's needed and preserve the rest. 5. Common configuration A common configuration for partners is a trading partner having a System e.g. partner-orders-system-1. Then there are usually two data identifiers most of the time one in an idoc system and one in an EDI System like EANCOM or TRADACOMs. The idoc identifier referrs to the internal SAP Partner number and the EDI Identifier often is the GLN of the Partner. For configuration of an identifier don't use custom things unless told to. Check get-type-system-identifier-schemes for available schemes. For example GLN is often called GS1. In addition, partners using AS2 must have a signature verification config (create-signature-verify-config) which is used to identify incoming AS2 messages by an AS2 ID. Within the system of the partner there is usually only one Type system registred (most of the time some EDI Type system) and one or multiple communication channels. ## Available Tools ### Trading Partner Management get-partner-metadata: Get metadata for all trading partners. get-partner: Get partner details by partner id. create-trading-partner: Create a new trading partner. get-systems-of-partner: Returns all systems of a trading partner by its ID. create-system: Create a system for a trading partner. get-system-types: Get available system types. create-identifier: Create a partner Identifier. get-qualifiers-codelist: Get codelist of a qualifier. create-communication: Create a communication channel for a system of a trading partner. get-sender-adapters: Get all sender adapters of trading partner systems. get-receiver-adapters: Get all receiver adapters of trading partner systems. create-signature-verify-config: Create Signature Verification configuration for a partner. activate-signature-verify-config: Activate Signature Verification configuration for a partner. get-all-company-profile-metadata: Get metadata for all company profiles. ### Agreement Management get-all-agreement-metadata: Get metadata for all agreements. get-all-agreement-template-metadata: Get metadata for all agreement templates. get-agreement-template: Get all details for an agreement template. create-agreement-with-bound-template: Create a new B2B agreement which is bound to a template. get-agreement-b2b-scenario: Get the technical B2B scenario of an agreement. update-b2b-scenario: Update an Agreement's B2B Scenario. trigger-agreement-activate-or-update-deployment: Update or deploy an agreement. ### Message Implementation Guideline (MIG) Management get-all-mig-latest-metadata: Get the latest metadata for all Message Implementation Guidelines (MIGs). get-mig-raw-by-id: Get raw MIG content by its version ID. get-mig-nodes-xpath: Get the Nodes of a MIG for a specified XPath. get-all-mig-fields: Get a List of all fields of a MIG. get-mig-documentation-entry: Get the documentation text for a id of a documentation within a mig. get-mig-proposal: Get Proposal for a MIG. apply-mig-proposal: Select fields based on MIG proposal. create-mig-draft-all-segments-selected: Creates a draft MIG from a source version, with all segments and fields pre-selected. create-mig: Create Message implementation guideline based on a type. change-mig-field-selection: Change the selection of MIG fields. ### Mapping Guideline (MAG) Management get-all-mags-metadata: Get an overview of available Mapping guidelines. create-mapping-guidelines: Create a new mapping guidelines. test-mag-with-message: Send a message against a mapping guideline and get the result. ### Monitoring search-interchanges: Search for interchanges/TPM message monitoring based on filter criteria. get-interchange-payloads: Get payload data list for a specific interchange. download-interchange-payload: Download a specific payload by its ID. get-interchange-last-error: Get last error details for a specific message/business document. ### Other get-type-systems: Get available type systems. get-type-system-messages: Get messages of a type system. get-type-system-message-full: Get a message from a type system with all details including versions and revisions. create-custom-message: Create a custom message in typesystem Customer_TS based on XSD. get-type-system-identifier-schemes: Get the possible scheme for identifiers in a type system. get-all-business-process-roles: Get all business process roles. get-all-business-processes: Get all business processes. get-all-industry-classifications: Get all industry classifications. get-all-product-classifications: Get all product classifications. get-all-products: Get all available products/types for a system e.g. SAP SuccessFactors etc. get-all-contries-or-regions: Get all countries or regions. ## Getting Help If you need assistance or are unsure how to proceed, you have a few options: 1. Search the Documentation: Use the search-docs tool from the mcp-integration-suite server to find relevant information. The documentation covers both general SAP Integration Suite topics and specific TPM functionalities. 2. Ask for Help: If you can't find what you're looking for in the documentation, feel free to ask me directly. I can guide you on how to use the available tools to achieve your goals. When you need help with any TPM scenario, I'll guide you through these tools and help you create effective solutions following SAP best practices.
These are some little more complex tasks I ran with multiple models. It is possible that individual results differ from these
- CSRF implementation
- Integrate other artifact types
Zero-setup MCP gateway securely connecting AI to your tools with authentication and workflows
Helps control workflows and get analytics from SaaS Aspro.Cloud
A curated collection of 11 MCP servers for popular SaaS APIs — Stripe, Sentry, Notion, Linear, Datadog, Vercel, PagerDuty, HubSpot, Intercom, Shopify, and Google Workspace.
The Most Comprehensive ServiceNow AI Toolkit — 400+ MCP tools, 26 AI capabilities, SDK mode, Direct API mode. Covers ITSM, ITOM, CMDB, HRSD, CSM, SecOps, GRC and 35+ modules.
Connect AI agents to Oracle EPM Cloud (Planning, PBCS, EPBCS) via REST APIs. Automate month-end close, run business rules, manage substitution variables, refresh databases, export data slices, and monitor job status through natural language. Built by Fred Mamadjanov, Oracle ACE and EPM Solution Architect.
A Model Context Protocol (MCP) server and standalone CLI for querying PowerPlatform / Dataverse environments. Supports multiple environments, entity metadata, records, plugins, flows, solutions, workflows, business rules, security roles, and more.
Integrates with the WeChat cloud development reservation system API.
Ask natural language questions about your SafetyCulture data using the SafetyCulture API.
An MCP server implementation for interacting with ServiceNow instances.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.

