mcpbeat Sign in

SendaMeal Storefront MCP Server

by sendameal Your server? Claim it
answering

SendaMeal Storefront is answering right now. Last checked 16 min ago. It exposes 6 tools.

Search gift meals and send them as gifts. Live catalog, cart, and guest checkout for SendaMeal.

Uptime history 17 days of history · worst day 99%
17 days agonow
98.9%
Uptime 24h
90 of 91 checks
6
Tools
read from the server
860 ms
Response time
average over 24h
open, no key
Access
streamable-http

SendaMeal Storefront does not always answer

Over the last week it answered 99.8% of our checks. We check every 15 minutes, so you hear about the next outage within the hour — not from your users.

Three servers free · no card

Connect this server

Endpoint below is the one we actually reach during checks — not the one copied from a README. Last verified 16 min ago.

run in your terminal
claude mcp add storefront --transport http https://store-odebi8ye4k-1.mybigcommerce.com/api/mcp
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "storefront": {
      "url": "https://store-odebi8ye4k-1.mybigcommerce.com/api/mcp"
    }
  }
}
~/.codex/config.toml
[mcp_servers.storefront]
url = "https://store-odebi8ye4k-1.mybigcommerce.com/api/mcp"
.cursor/mcp.json
{
  "mcpServers": {
    "storefront": {
      "url": "https://store-odebi8ye4k-1.mybigcommerce.com/api/mcp"
    }
  }
}
.vscode/mcp.json
{
  "mcpServers": {
    "storefront": {
      "url": "https://store-odebi8ye4k-1.mybigcommerce.com/api/mcp"
    }
  }
}

Available tools 6

Read directly from the server with tools/list, grouped by what they act on. If a tool disappears, we record the date.

item
add_item_to_cart
Add products to shopping cart with automatic cart creation Add products and gift certificates to your shopping cart. If no cart exists, this tool will automatically create a new cart and add the items to it. Perfect for starting a new shopping session or adding more items to an existing cart. Use this tool when customers want to: - Add new products to their cart - Start shopping by adding their first item - Add gift certificates to their purchase - Add multiple items in a single operation Features: - Automatic cart creation if none exists - Support for both regular products and gift certificates - Multi-currency and multi-locale support - Batch operations for adding multiple items at once - Handles product variants, quantities, and custom properties Flow: - Call 'search_products' tool to find products by search term. - Call 'get_product_details' tool to get product variants and images. - Call 'add_item_to_cart' tool to create new cart with item - Call 'create_checkout_url' tool to generate a checkout URL for the cart.
remove_item_from_cart
Remove specific items from your shopping cart. It is removing the item completly from the cart. If you want to reduce quantity of the items use 'update_cart_item' Remove unwanted items from your shopping cart by targeting specific item IDs. This tool provides precise control over cart cleanup and item removal. Use this tool when customers want to: -Remove specific products they no longer want -Delete gift certificates from their cart -Clean up their cart before checkout -Remove items added by mistake Features: - Target removal by specific item ID - Works with both products and gift certificates - Maintains cart structure after removal - Immediate cart updates Flow: - Call 'search_products' tool to find products by search term. - Call 'get_product_details' tool to get product variants and images. - Call 'add_item_to_cart' tool to create new cart with item - Call 'add_item_to_cart' tool to add another item to cart - Call 'remove_item_from_cart' tool to remove added item to cart - Call 'create_checkout_url' tool to generate a checkout URL for the cart. Requires an existing cart with items to remove.
cart
update_cart_item
Modify existing items in your shopping cart Update the details of items already in your shopping cart, including changing quantities, modifying product properties, or updating item-specific configurations. Use this tool when customers need to: - Change the quantity of items in their cart - Update product variants (size, color, etc.) - Modify custom properties or configurations - Adjust item-specific details before checkout Features: - Granular control over individual cart items - Quantity adjustments (increase or decrease) - Product variant and property modifications - Maintains cart integrity during updates Flow: - Call 'search_products' tool to find products by search term. - Call 'get_product_details' tool to get product variants and images. - Call 'add_item_to_cart' tool to create new cart with item - Call 'update_cart_item' tool to updatem item in the cart eq. quantity - Call 'create_checkout_url' tool to generate a checkout URL for the cart. Requires an existing cart with items to modify.
checkout
create_checkout_url
CreateResult a checkout URL for a cart assigned to a current session Arguments: None, but requires a cart to be present in the current session. Returns: - checkoutURL - the URL to redirect the user to for checkout - errors - any errors encountered during the process (like, cart not found, etc.) Flow: - Call 'manage_cart' with 'create_cart' operation to create a new cart. - Call this tool to create a checkout URL for the cart assigned to the current session.
product
get_product_details
Get product details (variants, options and images) by product ID(s). Arguments: productIds - array of product IDs to get details for (from 'search_products'). [IMPORTANT] Request only the products the user needs. A server-configured limit applies (default 20); requests over the limit are rejected with an error (retry with fewer IDs). option_values - resolve a specific variant by option/value IDs. Only valid with a SINGLE productId, and applied on the B2C storefront catalog. B2B buyers instead receive every variant (each with its option/value IDs) and pick the desired one from the returned list. channelId - optional; scopes the B2B catalog. Defaults to the channel resolved from the request. Returns: - products: array of products, each with: - variants: each carrying entityId, SKU, and options (optionId, optionLabel, valueId, valueLabel). - For B2B buyers, variants also include price, inventoryLevel, purchaseable, and bulkPricing. - Products not found are omitted from the array. Flow: - Call 'search_products' to get product IDs. - Call this tool with the product IDs to get variants, options and images. - Call 'add_item_to_cart' with results of 'search_products' and 'get_product_details' (variant) tools. - [IMPORTANT] If a product has variants you must specify which variant to add.
products
search_products
Search products by a term Arguments: term - the search term to look for products. It should be at least 3 characters long. cursor - optional, used for pagination. If provided, it will return the next page of results after. Pagination: Supports pagination with 'cursor' arguments. If 'cursor' is not provided, it will return the first page of results. Value for 'cursor' can be obtained from the 'nextCursor' field in the response. If 'nextCursor' is null, it means there are no more results to fetch. If value of cursor is null (or a string representation of 'null') dont send it in the payload. Results: Each product includes 'requiresFileUpload'. When true, the product has a required file-upload option (e.g. "upload your design") and shouldn't be added to cart through this assistant. Do not attempt to purchase it — tell the user it must be ordered on the website. Flow: - Call this tool with a 'term' argument and optionally with 'cursor' to search for products. - if you find a matching product, call 'get_product_details' with the product ID to get its variants and options (if any). - if 'requiresFileUpload' is true, inform the user the product needs a file upload and cannot be purchased here. - Call 'add_item_to_cart' with results of 'search_products' and 'get_product_details' (variant) tools to add the product to the cart. - [IMPORTANT] If product has variants ask user to pick

Endpoints

URLTransportStateLatencyChecked
https://store-odebi8ye4k-1.mybigcommerce.com/api/mcp streamable-http answering 943 ms 16 min ago

Alternatives to SendaMeal Storefront

same job, measured the same way
Giftroam
by giftroam

Send real gifts to 190+ countries: search, check delivery, get a secure checkout link.

6 tools answering
UCP Checker & Router
by ucpchecker

Check any domain for UCP support and shop verified UCP stores: search, cart, checkout links.

10 tools answering
C
Agent Checkout
by agentcheckoutapi

AI shopping gateway for product search, inventory, carts, and merchant-hosted checkout.

8 tools answering
Lowtoxgear Storefront
by lowtoxgear

Read-only catalogue MCP for Lowtoxgear — Australian low-tox lifestyle brand. 5 tools.

5 tools answering
C
ProtoClinical Commerce
by theprotoclinical

Search ProtoClinical's current K-beauty catalog and manage buyer-approved carts and checkouts.

13 tools answering
Zwitchy Store
by mouthfully

Travel eSIM catalog: search plans, check availability, and get exact quotes with checkout links.

4 tools answering
Yandex Lavka MCP
by dudude-bit

Unofficial MCP server for ordering Yandex Lavka groceries: search, cart, checkout.

117 installs/wk local only
Store
by bolotstudio

Custom metal-print storefront: catalog search, product details, shipping, reviews. Read-only.

11 tools answering

SendaMeal Storefront — questions

Answers built from our own checks of this server.

What can SendaMeal Storefront do?
It exposes 6 tools, read directly from the server on our last check. Among them: add_item_to_cart, create_checkout_url, get_product_details, remove_item_from_cart, search_products, update_cart_item. The full list with descriptions is on this page — we take it from the server itself via tools/list, not from a README. How MCP servers expose tools in the first place →
Is SendaMeal Storefront working right now?
We send a real MCP handshake every 15 minutes. Over the last 24 hours 90 of 91 checks got a reply (98.9%), average response time 860 ms. The bar chart above shows every period we have measured.
How do I connect SendaMeal Storefront?
Copy the ready config from this page — we generate it for Claude Code, Claude Desktop, Codex, Cursor and VS Code, each with the file path that client actually reads. It is a remote server, so there is nothing to install — the client connects to the address.
Does SendaMeal Storefront need an API key?
No. SendaMeal Storefront completed a full MCP handshake with us as an anonymous client and listed its tools without asking for anything. All 6 of them are readable on this page. This is what we observed, not what the docs claim.
How fast is SendaMeal Storefront?
It answers our handshake in 860 ms on average, which is faster than 15% of all working MCP servers we measure. That is on the slow side — worth knowing if the tool sits inside an interactive loop. The comparison comes from our own checks across the whole registry, every 15 minutes.