← share-a-cart.com
INDIVIDUAL MCP TOOL
sac_vendor_list
Lists Share-A-Cart vendors with a derived `searchable` boolean (true when the vendor exposes a server-side search adapter).
Input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent endpoint
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.share-a-cart-com]
url = "https://share-a-cart.com/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"share-a-cart-com": {
"type": "http",
"url": "https://share-a-cart.com/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: share-a-cart-com
Remote MCP URL: https://share-a-cart.com/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"share-a-cart-com": {
"url": "https://share-a-cart.com/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"share-a-cart-com": {
"type": "http",
"url": "https://share-a-cart.com/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "share-a-cart-com",
"transport": "streamable-http",
"url": "https://share-a-cart.com/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
sac_get_cart— GET /api/get/:cartid — extension-style cart JSON (raw cart from store).sac_get_cart_view— GET /api/get/r/cart/:cartid — React “prepared” cart (conquesting, matched carts).sac_get_product— GET /api/get/:vendor/:itemid/ — product details for a vendor item id.sac_save_cart— POST /api/make/saveWithMetadata — create or update a shared cart.sac_deals— Lists Share-A-Cart deals in upstream publisher order.sac_search_items— GET /api/make/:vendor/:keywords — search items (optional region, zip query params).sac_create_cart_from_search— Search items via /api/make and create a cart via saveWithMetadata (routes through sac_save_cart-style enrichment).