MCP Server (Tech Preview) Demo Video
In the following video, the capabilities of the MCP Server (Tech Preview) will be shown and you will learn how to use it within the Boomi platform.
Example of Prompts used in the demo video:
| Name | Prompt |
|---|---|
| GetOrders | Gets the top 10 recent orders from the Shopify store. |
| GetInventory | Get 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"]
}
When integrating with Boomi Agentstudio, your processes (tools) MUST BE deployed to a local runtime. Your local 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; we currently only support Server-Sent Events (SSE)