Manage your Online Store with AI
Use AI to manage your online store. Create products, process orders, and handle customers using natural language. Connect Claude, Cursor, Windsurf,...
Every Jumpseller store now exposes a public MCP endpoint that AI agents can use to browse your catalog, search for products, and generate direct buy links — all without authentication.
This is the storefront counterpart to the Admin MCP Server. While the Admin MCP requires authentication and lets you manage your store, the Storefront MCP is open to the public and provides read-only access to the same information a visitor sees on your website.
AI agents are increasingly how people discover and buy products. With the Storefront MCP, your store is ready for this shift:
llms.txt and .well-known/mcp.json
The Storefront MCP is available on every store at:
POST https://your-store.com/api/mcp
Replace your-store.com with your actual store domain (custom domain or yourstore.jumpseller.com).
Transport: Streamable HTTP (JSON-RPC 2.0 over POST). Stateless — each request is independent.
Authentication: None required. This is a public endpoint.
AI agents and crawlers can discover the MCP endpoint automatically through two standard files:
/api/mcp/llms.txt — Human-readable description of the MCP server and its tools/api/mcp/.well-known/mcp.json — Machine-readable MCP discovery metadataThe Storefront MCP provides 6 read-only tools:
| Tool | What it does |
|---|---|
get_store_info | Get store name, URL, country, currency, description, and logo |
list_products | Browse products with pagination. Filter by category permalink |
get_product | Get full product details by permalink: price, images, variants, buy links |
search_products | Full-text search across product name, description, and SKU |
list_categories | Get the full category tree with names and permalinks |
get_category | Get category details by permalink: description, images, SEO fields |
Products include: name, description (plain text), price, compare-at price, brand, SKU, stock availability, images, variants with per-variant pricing and buy links, categories, permalink, and direct URLs for add-to-cart and buy-now.
Categories include: name, description, permalink, URL, images, page title, and meta description.
Store info includes: name, description, country, currency, URL, and logo.
Only available products are returned. Disabled or out-of-stock-hidden products are never exposed. Sensitive merchant data (costs, margins, internal settings) is never included.
Send a JSON-RPC request to your store’s MCP endpoint:
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "search_products",
"arguments": {
"query": "summer dress",
"limit": 5
}
},
"id": 1
}
The response includes matching products with names, prices, images, and direct buy links.
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "get_product",
"arguments": {
"permalink": "summer-dress-blue"
}
},
"id": 1
}
The Storefront MCP has two rate limits to ensure fair usage:
search_products only)If you exceed these limits, you’ll receive an error response. Wait a minute and try again.
Any MCP-compatible client can connect to your store’s Storefront MCP. Here’s an example configuration:
{
"mcpServers": {
"my-store": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://your-store.com/api/mcp"
]
}
}
}
No authentication headers are needed — just point the client to your store’s /api/mcp endpoint.
| Storefront MCP | Admin MCP | |
|---|---|---|
| URL | your-store.com/api/mcp | mcp.jumpseller.com |
| Authentication | None (public) | API Token or OAuth 2.0 |
| Access | Read-only | Read and write |
| Data | Public catalog only | Full store management |
| Use case | AI shopping, chatbots, product discovery | Store administration, automation |
We’re working on extending the Storefront MCP with checkout and payment tools, so AI agents will be able to guide customers through the full purchase flow — from product discovery to completed order.
The Storefront MCP only exposes data that is already publicly visible on your store’s website:
It does not expose:
Start your free 7-day trial. No credit card required.