# Share-A-Cart > Share-A-Cart is a shopping cart sharing platform that allows users to create, share, and receive shopping carts from hundreds of online retailers. Share-A-Cart and its browser extensions help users collaborate and save time while shopping by creating shareable cart links. Add items to your cart and share the full list with family, friends, or coworkers — they can load your cart with a single click. --- ## Example Use Cases > Share-A-Cart has been used for a wide variety of use cases, including the following - A teacher creates a back-to-school cart and shares it with parents. - A roommate sends the weekly grocery cart to their housemate. - A business admin builds a shared office supply order for the team. - A gift registry is shared among family members during the holidays. - Transferring items from one Amazon cart to another - Sharing a cart with a friend to help them find items they need - Nutritionalist helping clients build the grocery list for the week or month - Recipe ingredients and suggested shopping list - An influencer helping their followers get their look or a build that they are excited to share - Perfect for holiday gift-giving suggestions --- ## General Pages - [Share-A-Cart Homepage](https://share-a-cart.com/): Quick-start information and links to supported stores - [Supported Retailers Directory](https://share-a-cart.com/supported): A complete list of supported online retailers - [Browser Extensions and Plugins](https://share-a-cart.com/plugins): List of available Share-A-Cart browser extensions, apps, and plugins for various platforms - [A list of Business Solutions](https://share-a-cart.com/business-solutions): A sampling of business solutions Share-A-Cart offers --- ## Help & Support - [User Guide](https://share-a-cart.com/guide): Full walkthrough of how to use Share-A-Cart and browser extensions - [Frequently Asked Questions (FAQ)](https://share-a-cart.com/faq): Answers to common questions and cart-sharing tips - [Mobile iOS Instructions](https://share-a-cart.com/help-ios): How to use Share-A-Cart on Apple devices - [Contact Form](https://share-a-cart.com/about#contactform): Submit feedback or request support --- ## Developer & MCP Documentation > Share-A-Cart exposes a Model Context Protocol (MCP) server so AI assistants and agents can search retailers, build carts, save shareable cart links, and surface deals on the user's behalf. The MCP server uses streamable HTTP and is available at `https://share-a-cart.com/mcp`. Connecting requires signing in with a free Share-A-Cart account via OAuth — MCP clients discover and handle the flow automatically (a browser opens to sign in and approve on first connect). Connect it to any MCP-compatible client by adding an HTTP server entry pointing at that URL, for example: ```json { "mcpServers": { "share-a-cart": { "url": "https://share-a-cart.com/mcp" } } } ``` Clients without native HTTP support can connect via the `mcp-remote` bridge. See the connecting guide below for client-specific instructions (Claude, Cursor, VS Code, and others). A companion **agent skill** packages the shopping workflow on top of the MCP. Install it as a Claude Code plugin (`/plugin marketplace add share-a-cart/skills`) or with the `skills` CLI (`npx skills add share-a-cart/skills --skill share-a-cart`); the skill works with or without the MCP connected. Source: https://github.com/share-a-cart/skills. - [Developer Portal](https://share-a-cart.com/developers): Overview of Share-A-Cart's developer and MCP offerings - [MCP Documentation](https://share-a-cart.com/developers/docs): Introduction to the Share-A-Cart MCP server - [Quickstart](https://share-a-cart.com/developers/docs/quickstart): Get up and running with the MCP server - [Connecting an MCP Client](https://share-a-cart.com/developers/docs/connecting): How to connect Claude, Cursor, and other MCP clients to the Share-A-Cart MCP server - [Agent Skills](https://share-a-cart.com/developers/docs/skills): Install the Share-A-Cart shopping skill as a Claude Code plugin or via the `skills` CLI — works with or without the MCP server - [MCP Tools Reference](https://share-a-cart.com/developers/docs/tools): Reference for the available MCP tools (search items, get/save carts, vendor list, and more) - [Deals](https://share-a-cart.com/developers/docs/deals): Surfacing Share-A-Cart promotions and deals through the MCP server --- ## Store-Specific Instructions - [Amazon](https://share-a-cart.com/supported/amazon): How to share Amazon carts (including international sites), Whole Foods, and Amazon Fresh - [Walmart](https://share-a-cart.com/supported/walmart): How to share Walmart carts - [Shein](https://share-a-cart.com/supported/shein): How to share Shein carts - [Kroger](https://share-a-cart.com/supported/kroger): How to share Kroger carts - [Wayfair](https://share-a-cart.com/supported/wayfair): How to share Wayfair carts - [Target](https://share-a-cart.com/supported/target): How to share Target carts - [Home Depot](https://share-a-cart.com/supported/homedepot): How to share Home Depot carts - [Best Buy](https://share-a-cart.com/supported/bestbuy): How to share Best Buy carts - [eBay](https://share-a-cart.com/supported/ebay): How to share eBay carts --- ## Optional / Extended Retailers - [Apple](https://share-a-cart.com/supported/apple) - [Barnes & Noble](https://share-a-cart.com/supported/barnesandnoble) - [BH Photo](https://share-a-cart.com/supported/bhphoto) - [Chewy](https://share-a-cart.com/supported/chewy) - [Costco](https://share-a-cart.com/supported/costco) - [CVS](https://share-a-cart.com/supported/cvs) - [Etsy](https://share-a-cart.com/supported/etsy) - [Instacart](https://share-a-cart.com/supported/instacart) - [Lowe's](https://share-a-cart.com/supported/lowes) - [Macy's](https://share-a-cart.com/supported/macys) - [Newegg](https://share-a-cart.com/supported/newegg) - [Nike](https://share-a-cart.com/supported/nike) - [Petco](https://share-a-cart.com/supported/petco) - [Sam's Club](https://share-a-cart.com/supported/samsclub) - [Sephora](https://share-a-cart.com/supported/sephora) - [Staples](https://share-a-cart.com/supported/staples) - [Ulta](https://share-a-cart.com/supported/ulta) - [Zappos](https://share-a-cart.com/supported/zappos) …and dozens more! (See full list at [Supported Retailers](https://share-a-cart.com/supported)) ---