Skip to main content
Support Center

Manage your Online Store with AI

Your online store can now be managed by AI. With Jumpseller’s MCP integration, AI assistants connect directly to your store and handle the work for you. Add products, process orders, organize your catalog, look up customers, get business insights, and more. You talk, the AI acts.

“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”

One sentence. The AI creates the product, sets up the variants, uploads the image, and assigns the category.

This is more than a shortcut. It opens the door to agentic commerce: AI agents that work on your store around the clock. They can monitor your inventory, suggest price changes based on demand, reorganize your catalog for seasonal campaigns, or process batches of orders while you focus on growing your business.

Whether you are a merchant looking to save hours of admin work, or a developer building the next generation of e-commerce automation, the Jumpseller MCP server gives you the tools to make it happen.

Compatible Platforms

Jumpseller works with all major AI platforms:

What Can AI Do for Your Store?

Run your daily operations. Adding products, updating prices, checking order status, fulfilling shipments. 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 the agent updates every single one.

Get insights and recommendations. Ask “which products have been out of stock for more than a week?” or “show me the top 5 customers by order count” and get answers instantly.

Automate repetitive workflows. Build agents that process orders every morning, send inventory alerts when stock runs low, or prepare your catalog for a sale event, all without manual intervention.

Improve your catalog with AI. Let the AI review your product descriptions, suggest missing categories, identify products without images, or flag inconsistent pricing across variants.

What is 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.

Agentic E-commerce

Beyond interactive use, the Jumpseller MCP enables agentic e-commerce: AI agents that manage your store autonomously. Developers can build agents that:

  • Monitor inventory and automatically reorder when stock runs low
  • Process incoming orders and update tracking information without manual intervention
  • Generate product descriptions and organize categories based on your catalog
  • Respond to customer inquiries by looking up order status and account details
  • Run scheduled tasks like price adjustments, seasonal catalog changes, or promotional campaigns

Using the MCP tools, any developer can build custom agents with Claude Agent SDK, LangChain, or any framework that supports MCP. The agent connects to https://mcp.jumpseller.com and has access to all 20 store management tools.

Connecting to the MCP Server

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.

Authentication

The MCP server supports two authentication methods depending on your use case.

Best for managing your own store directly from an AI agent.

  1. Go to your Jumpseller Admin, click on your account name (top right) and select Edit Account
  2. Scroll down to the API and MCP section
  3. Copy your Login Key and Auth Token
  4. Pass them as HTTP headers on every request:
    • X-LOGIN-KEY: your_login_key
    • X-AUTH-TOKEN: your_auth_token

API tokens have full access to all store operations based on your account permissions.

OAuth 2.0 (for third-party apps)

Best for apps and integrations that act on behalf of merchants. See the OAuth 2 Guide for full details.

  1. Register an OAuth application in Jumpseller
  2. Merchants authorize your app through the OAuth flow
  3. Pass the token as an HTTP header: Authorization: Bearer <token>

OAuth tokens are scoped to specific permissions:

  • read_products, write_products for product management
  • read_orders, write_orders for order management
  • read_customers for customer access
  • read_categories, write_categories for category management
  • read_pages, write_pages for page management
  • read_store for store information

Each token can only access the scopes that both the OAuth application and the merchant have approved.

Setup Guides

Below are configuration examples for popular AI tools. Replace the credentials with your own (see Authentication above).

Claude.ai (Custom Connector)

You can connect your Jumpseller store directly on claude.ai using a custom connector:

  1. Go to claude.ai and open Settings
  2. Click on Connectors and then Add custom connector
  3. Fill in the fields:
    • Name: Jumpseller
    • URL: https://mcp.jumpseller.com
    • Open Advanced settings and enter the OAuth Client ID: riJmQvQMJhqQnSwXlqapm3zDNgyiLwwxPgQdFr_462U
    • Leave OAuth Client Secret empty
  4. Click Add
  5. Claude will redirect you to sign in with your Jumpseller account
Claude custom connector setup

Once connected, you can ask Claude to manage your store directly from claude.ai.

ChatGPT

Jumpseller is also available as a GPT on ChatGPT. Visit the Jumpseller GPT and sign in with your Jumpseller account. You can then manage your store directly from ChatGPT using natural language.

Claude Desktop / Claude Code

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"
      ]
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project root (same JSON as above).

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json (same JSON as above).

GitHub Copilot (VS Code)

Add to your VS Code settings.json:

{
  "mcp": {
    "servers": {
      "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"
        ]
      }
    }
  }
}

Other MCP Clients

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.

What You Can Do

The MCP server provides 20 tools organized by area:

Products (6 tools)

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

Orders (4 tools)

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

Customers (3 tools)

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

Categories (3 tools)

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

Pages (3 tools)

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

Store (1 tool)

Tool What it does Access
get_store_info Get store name, URL, country, currency, and email read

Real-World Examples

Add products faster

“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.

Process orders efficiently

“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.

Organize your catalog

“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.

Quick business insights

“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.

Rate Limits

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 journey with us!

Start your free 7-day trial. No credit card required.