A Sylius plugin that exposes a Model Context Protocol (MCP) server for enabling interaction with your store via Large Language Models (LLMs) like ChatGPT.
We work on stable, supported and up-to-date versions of packages. We recommend you to do the same.
| Package | Version |
|---|---|
| PHP | ^8.2 |
| sylius/sylius | ^2.1 |
| MySQL | ^8.4 |
| NodeJS | ^20.x |
This installation instruction assumes that you're using Symfony Flex.
- Require plugin with composer:
composer require sylius/mcp-server-pluginClear application cache by using command:
bin/console cache:clear- Require the plugin:
composer require sylius/mcp-server-plugin- Import the plugin configuration in
config/packages/sylius_mcp_server.yaml:
imports:
- { resource: "@SyliusMcpServerPlugin/config/config.yaml" }- Import the routes in
config/routes.yaml:
sylius_mcp_server:
resource: '@SyliusMcpServerPlugin/config/routes.yaml'- Clear application cache:
bin/console cache:clearThe Model Context Protocol (MCP) is a standardized way to connect language models (like ChatGPT) with external tools, APIs, and systems. It allows an AI model to make structured tool calls — similar to calling functions — during a conversation.
The MCP Server acts as a bridge between the language model and your application logic. It exposes a list of tools (like “search for a product” or “create an order”) and executes them in response to requests from the AI.
This plugin integrates Sylius with an MCP Server, enabling AI agents to interact with your store (e.g., search products, check prices, start checkout).
We use the official symfony/mcp-bundle to provide the MCP server runtime.
┌────────────────┐ ┌───────────────┐ ┌────────┐
│ MCP Client │◄────────────────►│ MCP Server │◄─────►│ Sylius │
│ (OpenAi, etc.) │ (Stdio/HTTP) │ (Tools, etc.) │ (API) │ │
└────────────────┘ └───────────────┘ └────────┘
To learn more, see the official MCP introduction at modelcontextprotocol.io.
bin/console mcp:serverThe HTTP endpoint is available at /_mcp.
For more options, refer to the symfony/mcp-bundle documentation.
Tools communicate with the Sylius API through pre-configured HTTP clients:
sylius_mcp_server.http_client.api_shop:
base_uri: '%sylius_mcp_server.api.shop_base_uri%'
headers:
- 'Accept: application/ld+json'
- 'Content-Type: application/ld+json'
sylius_mcp_server.http_client.api_shop_merge_patch:
base_uri: '%sylius_mcp_server.api.shop_base_uri%'
headers:
- 'Accept: application/ld+json'
- 'Content-Type: application/merge-patch+json'The default API base URI is http://localhost:8000/api/v2/shop/, and can be overridden using the environment variable SYLIUS_MCP_SERVER_API_SHOP_BASE_URI.
The following tools are available out of the box:
| Name | Description |
|---|---|
| add_item_to_order | Adds an item to the order. |
| complete_checkout | Completes the checkout process. (Final step) |
| create_order | Creates a new order. |
| fetch_channel | Fetches a channel by code. |
| fetch_currency | Fetches a currency by code. |
| fetch_order | Fetches an order by its token. |
| fetch_product | Fetches a product by its code. |
| fetch_product_variant | Fetches a product variant by its code. |
| list_payment_methods | Lists all available payment methods. |
| list_shipping_methods | Lists all available shipping methods. |
| search_products | Searches for products by name. |
| search_product_variants | Searches for product variants by name. |
| select_payment_method | Selects a payment method for the order. (Step 3 of checkout) |
| select_shipping_method | Selects a shipping method for the order. (Step 2 of checkout) |
| update_order_address | Updates the order address. (Step 1 of checkout) |
These tools currently operate in guest mode only — fetch_order returns data only if the order has no associated customer account.
You can extend the server with your own tools by creating PHP classes annotated with the #[McpTool] attribute.
To learn how to define and structure a tool, see the symfony/mcp-bundle documentation.
Register your tools as services with autoconfiguration in config/services.yaml:
services:
App\Mcp\Tool\:
resource: '../src/Mcp/Tool/*'
autoconfigure: trueYou can use the server directly in OpenAI Playground, exposing it via ngrok or similar tunneling tools.
-
Configure the tool with the following settings:
curl https://api.openai.com/v1/responses \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"model": "gpt-4.1",
"tools": [
{
"type": "mcp",
"server_label": "Sylius",
"server_url": "$YOUR_MCP_SERVER_URL",
"require_approval": "never"
}
],
"input": [
{
"role": "user",
"content": [
{
"type": "input_text",
"text": "Find me red shoes"
}
]
}
],
"max_output_tokens": 1024
}'If you think that you have found a security issue, please do not use the issue tracker and do not post it publicly.
Instead, all security issues must be sent to security@sylius.com
For online communication, we invite you to chat with us & other users on Sylius Slack.
This plugin's source code is completely free and released under the terms of the MIT license.


