A Model Context Protocol implementation for interacting with ShopsBuilder e-commerce platform
Connect, select, create, and manage a ShopsBuilder store
Connect an MCP client to this server's /mcp endpoint with
Streamable HTTP. The server advertises OAuth metadata, so a
standards-compatible client can open the sign-in flow without a
client-supplied ShopsBuilder token. Client support and configuration vary;
consult your client's documentation for remote OAuth MCP servers.
Connecting ShopsBuilder to LLMs allows you to easily get answers to questions like:
This server is write-capable. Review tool inputs and confirm consequential changes before an agent submits them.
Quick setup guide to get you up and running
After OAuth authentication, call list_stores. With zero
stores, collect name, language, email, and description; call
create_store without confirmation to preview the input,
show it to the user, then call it with confirmed=true
only after approval. Exactly one store is selected automatically.
With multiple stores, ask the user and call
select_store. Use current_store to inspect
the selection. If a management tool says provisioning is not ready,
retry that tool shortly.
Bootstrap prompt: Set up my ShopsBuilder store. Authenticate through MCP OAuth, call list_stores, follow the zero, one, or multiple-store path, ask before creating or changing anything, and then use the existing management tools.
Pre-configured functions for common ShopsBuilder operations
Tools are pre-configured functions that can be used to help with common tasks. Each tool provides specific functionality for interacting with and managing your selected ShopsBuilder store.
Add a channel, and optionally countries, to a shipping zone.Attaching the channel alone is NOT enough to make stock visible. ShopsBuilder resolves availability through warehouses "operating in shipping zones that contain this country", so the zone must ALSO list the country the channel sells to. Attaching a GBP/GB channel to a zone whose countries are ``[US]`` leaves every product showing as out of stock while every other call still reports success.
str:
str:
list[str] | None:
Attach a real image to a product from any public image URL.This is the tool to use for product photos. ``add_product_media`` takes a ``media_url``, but ShopsBuilder's ``mediaUrl`` input is for embedding external VIDEO (YouTube/Vimeo) and rejects image URLs -- use this instead.
str:
str:
str | None:
Embed EXTERNAL VIDEO (YouTube/Vimeo) on a product. Not for images.This maps to ShopsBuilder's ``mediaUrl`` input, which only accepts recognised oEmbed video providers. Passing an image URL fails with UNSUPPORTED_MEDIA_PROVIDER, however valid and public the URL is.
str:
str:
str | None:
Attach real images to many products in one call.The tool to use when cataloguing a store: one image per product means one call per product otherwise, turning a 50 product import into 50 round-trips.
list[dict[str, str]]:
Attach an image you uploaded via ``create_presigned_upload_urls``.Completes the local-bytes flow: presign, PUT the bytes yourself, then call this with the returned ``key`` or ``public_url``.
str:
str:
str | None:
str:
str:
Attach warehouses to a channel so its products can be sold.ShopsBuilder resolves ``quantityAvailable`` in channel context from the channel's own warehouse relation. A channel with no warehouses shows every product as out of stock regardless of warehouse stock levels, and this link is separate from the shipping-zone linkage -- attaching the zone to the channel does not create it. ``create_channel(warehouse_ids=[...])`` sets this at creation; use this tool to repair a channel that was created without it.
str:
list[str]:
Fetch the list of channels from ShopsBuilder.This tools retrieves the list of channels. For each channel it returns information such as: ID, name, slug, currency code, default country, whether the channel is active, and the list of warehouses.
Diagnose why products in a channel are not buyable or show as out of stock.Verifies the whole availability chain and reports which link is broken:
str:
Create a catalogue promotion that reduces product prices visibly.This is the modern way to create sales in ShopsBuilder 3.x. The discount will be visible on the ProductVariant.pricing.onSale field.
str:
float:
str:
list[str] | None:
list[str] | None:
list[str] | None:
str | None:
str | None:
Create a new category in ShopsBuilder.Args: ctx: MCP context for logging and request metadata name: Category name slug: URL-friendly slug (auto-generated from name if not provided)
str:
str | None:
Create a new channel in ShopsBuilder.Pass ``warehouse_ids``. A channel with no warehouses sells nothing: ShopsBuilder resolves ``quantityAvailable`` in channel context from the channel's own warehouse relation, so every product shows as out of stock no matter how much stock the warehouse holds. Nothing else reports an error, and the warehouse being in a shipping zone attached to the channel is NOT enough -- the channel-warehouse link is separate.
str:
str:
str:
str:
bool:
list[str] | None:
list[str] | None:
Create presigned URLs for uploading image bytes you hold locally.Only needed when you have raw bytes. If the image is ALREADY at a public URL, skip this entirely and call ``add_product_media`` (or ``add_product_media_bulk``) with that URL -- ShopsBuilder fetches it directly.
list[str]:
int:
int:
str:
Create a new product in ShopsBuilder.Args: ctx: MCP context for logging and request metadata name: Name of the product (e.g., "OCR Credits - 2,000 Pages") product_type_id: ID of the product type slug: URL-friendly slug (optional) description: Product description in JSON format (optional)
str:
str:
str | None:
str | None:
Create a new product type in ShopsBuilder.Args: ctx: MCP context for logging and request metadata name: Name of the product type (e.g., "Digital Credits") slug: URL-friendly slug (optional, auto-generated if not provided) is_digital: Whether products are digital (default: True for credits) is_shipping_required: Whether shipping is required (default: False) has_variants: Whether products have multiple variants (default: False)
str:
str | None:
bool:
bool:
bool:
Create a product variant with domain-appropriate properties in ShopsBuilder.Use attributes assigned to the product type. Variants of the same product should use the same applicable attribute dimensions, with a distinct value combination for each variant. Do not assume a universal attribute set.
str:
str:
str | None:
list[ShopsBuilder_mcp.ShopsBuilder_client.input_types.AttributeValueInput] | None:
Create a new sale/discount in ShopsBuilder.Args: ctx: MCP context for logging and request metadata name: Name of the sale (e.g., "New Year Sale - 30% Off") sale_type: Type of discount - "PERCENTAGE" or "FIXED" variants: List of variant IDs to include in the sale products: List of product IDs to include in the sale start_date: Optional ISO date string for when sale starts end_date: Optional ISO date string for when sale ends
str:
str:
list[str] | None:
list[str] | None:
str | None:
str | None:
Create a delivery option and price it in one or more channels.Without a shipping rate priced in the buyer's channel, checkout fails with "No shipping methods available for
str:
str:
list[dict[str, Any]]:
str | None:
int | None:
int | None:
Preview or explicitly confirm creation of a marketplace-owned store.Only the store name and owner email are asked for. Language, label and descriptions keep Marketplace's defaults and can be changed after creation.
str:
str:
bool:
Create a generic attribute dimension and assign it for variant selection.
str:
str:
list[str] | None:
VariantDimensionInputType:
str | None:
Return the current domain of the connected ShopsBuilder instance.
Return the selected store after fresh authorization revalidation.
Fetch list of customers from ShopsBuilder GraphQL API.This tool retrieves customer information such as: ID, active status, language code, last login, date joined, and default shipping/billing address country.
int | None: Number of customers to fetch (max 100 per request)
str | None: Cursor for pagination - fetch customers after this cursor
ShopsBuilder_mcp.ShopsBuilder_client.input_types.UserSortingInput | None: Sort customers by specific field
ShopsBuilder_mcp.tools.customers.CustomerFilterInput | None: Filter customers by specific criteria
Delete product images by media ID.Makes image mistakes recoverable: without this, a wrong or placeholder image attached during an import can only be removed from the dashboard. Find IDs with ``list_product_media``.
list[str]:
Delete a promotion from ShopsBuilder.Args: ctx: MCP context for logging and request metadata promotion_id: ID of the promotion to delete
str:
Delete a sale/discount from ShopsBuilder.Args: ctx: MCP context for logging and request metadata sale_id: ID of the sale to delete
str:
Get product pricing including discounts for a channel.Returns both the regular price and discounted price (if a sale applies) for all product variants in a channel.
str:
int:
Discover assigned variant dimensions using one product or product type ID.
str | None:
str | None:
List all categories in ShopsBuilder.
List the images attached to a product, with their IDs.Use before ``delete_product_media`` to find the IDs to remove, or to check whether a product still needs an image.
str:
List all promotions in ShopsBuilder.
List all sales/discounts in ShopsBuilder.Args: ctx: MCP context for logging and request metadata channel: Optional channel slug to filter sales by channel
str | None:
List shipping rates and, crucially, which channels each is priced in.A rate only offers delivery in a channel it has a channel listing for. A zone can hold rates that are invisible to a given channel, which surfaces on the storefront as "No shipping methods available for
str | None:
List all shipping zones in ShopsBuilder.The ``countries`` field matters: ShopsBuilder resolves stock availability through warehouses operating in a shipping zone that *contains the buyer's country*. A zone whose countries do not include the country a channel sells to will make every product in that channel show as out of stock, even when the warehouse holds stock.
List every store owned by the authenticated marketplace identity.
List all warehouses in ShopsBuilder.
Fetch total count of orders from ShopsBuilder GraphQL API.This tool retrieves the total count of orders based on the provided filter criteria.
ShopsBuilder_mcp.tools.orders.OrderFilterInput | None: Filter and search orders by specific criteria
Fetch list of orders from ShopsBuilder GraphQL API.This tool retrieves the list of orders. For each order it returns information such as: ID, number, status, creation date, last update date, payment status, total amount, shipping and billing address country, order lines which include: quantity, product SKU, variant name, product ID, product name, unit price.
int | None: Number of orders to fetch (max 100 per request)
str | None: Cursor for pagination - fetch orders after this cursor
ShopsBuilder_mcp.ShopsBuilder_client.input_types.OrderSortingInput | None: Sort orders by specific field
ShopsBuilder_mcp.tools.orders.OrderFilterInput | None: Filter and search orders by specific criteria
Fetch list of products from ShopsBuilder GraphQL API.This tool retrieves product information such as: ID, name, slug, external reference, product type, category, date of creation, date of last update, and pricing.
int | None: Number of products to fetch (max 100 per request)
str | None: Cursor for pagination - fetch products after this cursor
str | None: Slug of a channel for which the data should be returned. If not provided, general product data is returned.
ShopsBuilder_mcp.ShopsBuilder_client.input_types.ProductOrder | None: Sort products by specific field
str | None: Search products with full-text search
Publish a product to a specific channel.Args: ctx: MCP context for logging and request metadata product_id: ID of the product to publish channel_id: ID of the channel to publish to is_published: Whether the product is published (default: True) is_available_for_purchase: Whether available for purchase (default: True) visible_in_listings: Whether visible in listings (default: True)
str:
str:
bool:
bool:
bool:
Select a store only after fresh marketplace membership validation.
int:
Price an existing shipping rate in one or more channels.Use to make an existing rate available in a channel it was not priced in -- the usual cause of "No shipping methods available for
str:
list[dict[str, Any]]:
Set the price of a product variant in a specific channel.The currency is determined by the channel's configured currency.
str:
str:
float:
Set stock quantity for a variant in a warehouse.Setting stock is not sufficient for the storefront to show the variant as in stock. ShopsBuilder resolves availability through warehouses operating in a shipping zone that contains the buyer's country, so this warehouse must belong to a shipping zone that is assigned to the channel AND lists that channel's selling country. See ``add_channel_to_shipping_zone`` for the full chain, and ``check_channel_readiness`` to verify it.
str:
str:
int:
Fetch list of stocks from ShopsBuilder GraphQL API.This tool retrieves stock information such as: ID, quantity, allocated quantity, warehouse information, and associated product variant details.
int | None: Number of stocks to fetch (max 100 per request)
str | None: Cursor for pagination - fetch stocks after this cursor
ShopsBuilder_mcp.ShopsBuilder_client.input_types.StockFilterInput | None: Filter stocks by specific criteria
Assign a category to a product.Args: ctx: MCP context for logging and request metadata product_id: ID of the product to update category_id: ID of the category to assign
str:
str:
Update the discount value for a sale in a specific channel.Args: ctx: MCP context for logging and request metadata sale_id: ID of the sale to update channel_id: ID of the channel discount_value: Discount value (percentage or fixed amount depending on sale type)
str:
str:
float:
Fetch warehouse details from ShopsBuilder GraphQL API.This tool retrieves detailed warehouse information including: ID, name, slug, address details, click and collect options, associated shipping zones with their channels and countries, and metadata.
str | None: ID of the warehouse to fetch details for