Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"jumpseller": {
"args": [
"-y",
"mcp-remote",
"https://mcp.jumpseller.com/",
"--header",
"X-LOGIN-KEY:YOUR_LOGIN_KEY",
"--header",
"X-AUTH-TOKEN:YOUR_AUTH_TOKEN"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Official OpenAPI 3.0.3 specification for the Jumpseller ecommerce platform API.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'openmcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked openmcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ecommerce
Production-grade MCP server and CLI tool for Shopify Admin GraphQL API — 49+ tools, YAML-extensible, dual auth, dual transport, Docker-ready
A command line tool for setting up commercetools MCP server
35+ AI tools for TCG card grading, Monte Carlo pricing, 370K+ product search. BYOK.
This is the reference implementation for the mcp server
MCP Security Weekly
Get CVE alerts and security updates for com.jumpseller/admin-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Official OpenAPI 3.0.3 specification for the Jumpseller ecommerce platform API.
The Jumpseller API lets you programmatically create and manage online stores. It covers:
Base URL: https://api.jumpseller.com/v1
Authentication: Basic auth with your login and auth token (found in your Admin Panel > Account).
curl -u YOUR_LOGIN:YOUR_AUTHTOKEN https://api.jumpseller.com/v1/products.json
Jumpseller provides a dedicated Model Context Protocol (MCP) server that exposes 20 store management tools to AI agents like Claude, Cursor, Windsurf, and GitHub Copilot.
Server URL: https://mcp.jumpseller.com
Transport: Streamable HTTP (JSON-RPC over POST, stateless)
Documentation: jumpseller.com/support/mcp-server
{
"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 this to claude_desktop_config.json (Claude), .cursor/mcp.json (Cursor), or ~/.codeium/windsurf/mcp_config.json (Windsurf). Get your credentials from Jumpseller Admin > Settings > API.
| Area | Tools | Access |
|---|---|---|
| Products | list_products, get_product, search_products, create_product, update_product, delete_product | read/write |
| Orders | list_orders, get_order, search_orders, update_order | read/write |
| Customers | list_customers, get_customer, search_customers | read |
| Categories | list_categories, create_category, delete_category | read/write |
| Pages | list_pages, create_page, delete_page | read/write |
| Store | get_store_info | read |
Product tools support variants (sizes, colors), images, and categories. Tools are auto-discovered via tools/list.
X-LOGIN-KEY + X-AUTH-TOKEN headers (for store owners)Authorization: Bearer <token> with scoped permissions (for third-party apps). See OAuth 2 Guide.You can also connect via the OpenAPI spec for full API coverage (109 endpoints):
npx openmcp install https://api.jumpseller.com/swagger.json --client cursor
This documentation is provided by Jumpseller for use by developers and AI agents building integrations with the platform.