Skip to main content
Feedback

MCP server (Early Access) Demo Video

The following video demonstrates the capabilities of the MCP Server (Early Access) and shows you how to use it within the Boomi Platform.

Example of Prompts used in the demo video:

NamePrompt
GetOrdersGets the top 10 recent orders from the Shopify store.
GetInventoryGet a list of products with low inventory levels.

Example of JSON Schema used in the demo video:

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The GraphQL query element to pass into the Shopify GraphQL query."
}
},
"required": ["query"]
}
Important

When integrating with Boomi Agentstudio, you must deploy your processes (tools) to a local runtime, and that runtime must be accessible from the internet. Boomi Agentstudio will not be able to execute your processes (tools) if the runtime is not reachable from the internet.

In order for all your processes (tools) to be part of the same MCP Server, you MUST use the same connection component for all the processes (tools) you plan to deploy. Port 8000 MUST BE open and available in order for your MCP Server to be reachable from the internet.

Example URL for your local runtime: https://your-public-ip-or-domain:8000/mcp/your-mcp-server/sse

where:

  • your-public-ip-or-domain = Your Boomi local runtime's internet address
  • :8000 = default MCP Server port
  • /mcp = the protocol to communicate with LLMs (Agents)
  • /your-mcp-server = the name you chose for your MCP Server at design time
  • /sse = Transport type; Boomi currently only supports Server-Sent Events (SSE)