llms.txt Content
# Jumpseller
> Jumpseller is an ecommerce platform for creating and managing online stores.
## API
The Jumpseller API allows programmatic store creation and management. Full OpenAPI specification:
- OpenAPI spec: https://api.jumpseller.com/swagger.json
- API docs: https://jumpseller.com/support/api
## Capabilities
- Create and configure online stores
- Manage products, variants, images, and categories
- Process orders and fulfillments
- Manage customers
- Configure shipping methods and payment gateways
- Apply and customize themes
- Set up webhooks for event notifications
## Authentication
- API Token: Basic auth with login and authtoken
- OAuth2: Bearer token for third-party applications
## MCP Server (Model Context Protocol)
Jumpseller provides an MCP server that allows AI agents to manage stores directly.
- URL: https://mcp.jumpseller.com
- Transport: Streamable HTTP (POST)
- Auth: OAuth 2.0 Bearer token or API token headers (X-LOGIN-KEY + X-AUTH-TOKEN)
- Documentation: https://jumpseller.com/support/mcp
### Available Tools
- get_store_info: Get store name, URL, country, currency, and contact email.
- list_products: List products with pagination.
- get_product: Get product by ID with images, variants, and categories.
- create_product: Create product with name, price, description, stock, SKU, images, categories, and variants.
- update_product: Update product fields, add new variants or update existing ones.
- search_products: Search by name, description, or SKU.
- delete_product: Delete product by ID.
- list_categories: List all categories as a tree.
- create_category: Create category with optional parent.
- delete_category: Delete category by ID.
- list_orders: List orders with pagination and status filter.
- get_order: Get order details with products, customer, addresses, and shipping.
- search_orders: Search by order ID, customer name, email, or product.
- update_order: Update status or add tracking info.
- list_customers: List customers with pagin