Confidential guide on numerology and astrology, based of GG33 Public information

mcp-integration-suite
3 years
Works with Finder
1
Github Watches
1
Github Forks
4
Github Stars
DISCLAIMER: This server is still experimental. Use at your own risk!
MCP Integration Suite Server
A ModelContextProtocol (MCP) Server for SAP Integration Suite.
Requirements
NodeJs and NPM (Node Version > 20 because of native NodeJS fetch)
Installation
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": []
}
}
}
Custom Prompt
# 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.
Test results
These are some little more complex tasks I ran with multiple models. It is possible that individual results differ from these
Prompt | Claude Desktop 3.7 | Cline + Claude 3.7 | Cline + Deepseek chat | Cline + Gemini 2.5 |
---|---|---|---|---|
create a message mapping called mm_invoice_demo in package |
❌* | ✅ | ❌ | ✅ |
create a new iflow in package |
✅ | ✅ | ❌ | ✅ |
create a new iflow in package |
❌* | ✅ | ❌ | ✅ |
Send a HTTP POST message with body {"hello": "world"} to iflow if_simple_http and show the response | ✅ | ✅ | ✅ | ✅ |
Get all messages with errors from the last two days | ✅ | ✅ | ✅ | ✅ |
How much messages were processed this year per iflow accross all packages | ✅ | ✅ | ✅ | ✅ |
TODOs
- CSRF implementation
- B2B Management
- Integrate other artifact types
相关推荐
Converts Figma frames into front-end code for various mobile frameworks.
Advanced software engineer GPT that excels through nailing the basics.
I find academic articles and books for research and literature reviews.
Embark on a thrilling diplomatic quest across a galaxy on the brink of war. Navigate complex politics and alien cultures to forge peace and avert catastrophe in this immersive interstellar adventure.
Delivers concise Python code and interprets non-English comments
Micropython I2C-based manipulation of the MCP series GPIO expander, derived from Adafruit_MCP230xx
Discover the most comprehensive and up-to-date collection of MCP servers in the market. This repository serves as a centralized hub, offering an extensive catalog of open-source and proprietary MCP servers, complete with features, documentation links, and contributors.
The all-in-one Desktop & Docker AI application with built-in RAG, AI agents, No-code agent builder, MCP compatibility, and more.
AWS MCP Servers — specialized MCP servers that bring AWS best practices directly to your development workflow
💬 MaxKB is an open-source AI assistant for enterprise. It seamlessly integrates RAG pipelines, supports robust workflows, and provides MCP tool-use capabilities.
🔥 1Panel provides an intuitive web interface and MCP Server to manage websites, files, containers, databases, and LLMs on a Linux server.
Reviews

user_l8LUmILq
I've been using the mcp-integration-suite by 1nbuc, and it has significantly streamlined my workflow. This suite offers seamless integration capabilities, making it incredibly easy to connect various systems and automate processes. The documentation is thorough, and the community support is great. Highly recommend checking it out at https://github.com/1nbuc/mcp-integration-suite!