Jumpseller MCP Server

Manage your Jumpseller store with AI. Products, orders, customers, and more.

Remote serverstreamable-http

What is the Jumpseller MCP server?

Jumpseller MCP server exists for a simple reason — assistants are far more useful when they can act on Jumpseller directly instead of describing what you should do. Manage your Jumpseller store with AI. Products, orders, customers, and more.

What you get

The Jumpseller API lets you programmatically create and manage online stores. It covers:

What the assistant can call

Once Jumpseller is connected, these are the calls the assistant has available:

  • Stores — Create, configure, and manage online stores
  • Products — Full CRUD with variants, images, categories, and custom fields
  • Orders — Create, update, search, and fulfill orders
  • Customers — Manage customer accounts and groups
  • Shipping — Configure shipping methods and rates
  • Payments — Set up payment gateways
  • Themes — Apply and customize store themes
  • Webhooks — Subscribe to store events
  • Area — Tools
  • Categories — list_categories, create_category, delete_category
  • Pages — list_pages, create_page, delete_page
  • Store — get_store_info

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Configuration and credentials

You will need 2 environment variables: YOUR_LOGIN_KEY, YOUR_AUTH_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Choosing this one

Plenty of payments and commerce servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Jumpseller's toolset — Stores, Products, Orders and 10 more — is a fair guide to whether it matches your workflow. It is maintained by com.jumpseller; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 13 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Jumpseller.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the jumpseller mcp server does with a few real requests.

Available tools

ToolWhat it does
StoresCreate, configure, and manage online stores
ProductsFull CRUD with variants, images, categories, and custom fields
OrdersCreate, update, search, and fulfill orders
CustomersManage customer accounts and groups
ShippingConfigure shipping methods and rates
PaymentsSet up payment gateways
ThemesApply and customize store themes
WebhooksSubscribe to store events
AreaTools
Categorieslist_categories, create_category, delete_category
Pageslist_pages, create_page, delete_page
Storeget_store_info
AuthenticationThe Authentication tool exposed by this server.

How to install the Jumpseller MCP server

{
  "mcpServers": {
    "admin": {
      "command": "npx",
      "args": ["-y", "openmcp"],
      "env": {
        "YOUR_LOGIN_KEY": "your-value",
        "YOUR_AUTH_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
YOUR_LOGIN_KEYCredential the server authenticates with.Yes
YOUR_AUTH_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Jumpseller to Stores.
  • Use Jumpseller to Products.
  • Use Jumpseller to Orders.

Frequently asked questions

It connects Jumpseller to MCP-compatible AI assistants such as Claude and Cursor, exposing 13 tools (Stores, Products, Orders, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Jumpseller directly.