Requesting Support for Jumpseller API
Learn how to prepare and submit an effective support request when using the Jumpseller API for integrations.
What if you could manage your entire store just by asking? With Jumpseller’s MCP integration, AI assistants like Claude, Cursor, and Windsurf become your store managers. No menus, no forms, just tell the AI what you need.
“Add a new product called Summer Dress at $49.99 with sizes S, M, L, upload this image, and put it in the Women’s category”
The AI handles everything: creates the product, sets up the variants, uploads the image, and assigns the category, all from a single sentence.
Save time on repetitive tasks. Adding products, updating prices, checking order status: tasks that take minutes in the admin panel take seconds with AI.
Manage in bulk with natural language. Instead of editing products one by one, say “reduce the price of all summer products by 20%” and let the agent handle it.
Get instant answers about your business. Ask “how many pending orders do I have?” or “find the customer who ordered last week” without navigating through multiple screens.
Works with the tools you already use. Connect to Claude, Cursor, Windsurf, GitHub Copilot, and any AI tool that supports the Model Context Protocol (MCP).
The Model Context Protocol (MCP) is an open standard created by Anthropic that lets AI agents use tools on external services. Think of it as a universal plug that connects any AI assistant to your Jumpseller store.
When you connect your store via MCP, the AI agent can see all available tools (list products, create orders, search customers, etc.) and use them intelligently to accomplish what you ask.
Jumpseller joins platforms like Shopify, Stripe, and PayPal in offering MCP support, putting your store at the forefront of AI-powered commerce.
Server URL: https://mcp.jumpseller.com
Transport: Streamable HTTP (JSON-RPC over POST). The server is stateless, so each request is independent.
Protocol: Model Context Protocol (MCP). Tools are auto-discovered via tools/list.
Any MCP-compatible client can connect by sending JSON-RPC POST requests to the URL above with the appropriate authentication headers.
The MCP server supports two authentication methods depending on your use case.
Best for managing your own store directly from an AI agent.
X-LOGIN-KEY: your_login_keyX-AUTH-TOKEN: your_auth_tokenAPI tokens have full access to all store operations based on your account permissions.
Best for apps and integrations that act on behalf of merchants. See the OAuth 2 Guide for full details.
Authorization: Bearer <token>
OAuth tokens are scoped to specific permissions:
read_products, write_products for product managementread_orders, write_orders for order managementread_customers for customer accessread_categories, write_categories for category managementread_pages, write_pages for page managementread_store for store informationEach token can only access the scopes that both the OAuth application and the merchant have approved.
Below are configuration examples for popular AI tools. Replace the credentials with your own (see Authentication above).
Add to your claude_desktop_config.json or .mcp.json:
{
"mcpServers": {
"jumpseller": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://mcp.jumpseller.com/",
"--header", "X-LOGIN-KEY:YOUR_LOGIN_KEY",
"--header", "X-AUTH-TOKEN:YOUR_AUTH_TOKEN"
]
}
}
}
Add to .cursor/mcp.json in your project root (same JSON as above).
Add to ~/.codeium/windsurf/mcp_config.json (same JSON as above).
Any MCP client that supports Streamable HTTP transport can connect. Point it to https://mcp.jumpseller.com/ and configure the authentication headers for your chosen method (API Token or OAuth 2.0). The client will auto-discover all available tools via the tools/list method.
The MCP server provides 20 tools organized by area:
Create, update, search, and delete products. Includes full support for variants (sizes, colors), images, and categories.
| Tool | What it does | Access |
|---|---|---|
list_products | List products with pagination | read |
get_product | Get product details with images, variants, and categories | read |
search_products | Search by name, description, or SKU | read |
create_product | Create product with variants, images, and categories | write |
update_product | Update any field, add or modify variants | write |
delete_product | Delete a product | write |
View orders, search by customer or product, update order status, and add shipping tracking information.
| Tool | What it does | Access |
|---|---|---|
list_orders | List orders with pagination and status filter | read |
get_order | Get full order details with products and customer | read |
search_orders | Search by order ID, customer name, email, or product | read |
update_order | Change status or add tracking info | write |
Look up customers by name or email, view their contact details and addresses.
| Tool | What it does | Access |
|---|---|---|
list_customers | List customers with pagination | read |
get_customer | Get customer details with addresses | read |
search_customers | Search by name or email | read |
Manage your product categories and organize your catalog.
| Tool | What it does | Access |
|---|---|---|
list_categories | List all categories as a tree | read |
create_category | Create a new category | write |
delete_category | Delete a category | write |
Create and manage store pages like About, Contact, and Policies.
| Tool | What it does | Access |
|---|---|---|
list_pages | List store pages | read |
create_page | Create a new page | write |
delete_page | Delete a page | write |
| Tool | What it does | Access |
|---|---|---|
get_store_info | Get store name, URL, country, currency, and email | read |
“Create 5 products for a coffee shop: Espresso at $3, Latte at $4.50, Cappuccino at $4.50, Americano at $3.50, and Mocha at $5. All with sizes Small and Large. The Large size costs $1 more.”
The agent creates all 5 products with 2 size variants each, adjusting prices automatically.
“Show me all pending orders from this week. Mark the ones from Portugal as paid and add tracking number PT123456 from CTT.”
The agent searches orders, filters by country, and updates each one with the status and tracking info.
“Create a category called ‘Black Friday Deals’ and move all products priced over $50 to it”
The agent creates the category, searches for matching products, and reassigns them.
“How many products do I have? How many are out of stock?”
The agent lists products, counts them, and identifies which ones have zero stock.
The MCP server allows 100 requests per minute per account. This is more than enough for interactive AI sessions. If you exceed this limit, you’ll receive a 429 Too Many Requests response.
Start your free 7-day trial. No credit card required.