# Jumpseller — Pipedream Connect

> The e-commerce platform for fast-growing businesses.

- API slug: `jumpseller` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: Commerce
- Website: https://jumpseller.com/
- Managed OAuth scopes: `read_store` · `read_orders` · `read_products` · `read_customers` · `read_settings` · `write_products` · `write_hooks`
- This page (HTML): https://pipedream.com/apps/jumpseller
- Tools: 4 actions · 2 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: jumpseller`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "jumpseller",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Create Product:
const result = await mcp.callTool({
  name: "jumpseller-create-product",
  arguments: {
    name: "Name",
    price: "Price",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## API proxy

For a Jumpseller endpoint with no pre-built tool, the proxy forwards your request with the connected user's credentials attached.

```bash
# The path segment is the target URL, URL-safe base64 encoded:
# https://api.jumpseller.com/v1/store/info.json

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuanVtcHNlbGxlci5jb20vdjEvc3RvcmUvaW5mby5qc29u?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
  -H "Authorization: Bearer {access_token}" \
  -H "x-pd-environment: production"
```

Docs: [API proxy guide](https://pipedream.com/docs/connect/api-proxy.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "jumpseller-create-product",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    jumpseller: { authProvisionId: "apn_xxxxxxx" },
    name: "Name",
    price: "Price",
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (4)

### `jumpseller-create-product` — Create Product (Write)

Create a new product in Jumpseller. See the documentation

Full schema: https://pipedream.com/apps/jumpseller/actions/create-product.md

### `jumpseller-create-product-variant` — Create Product Variant (Write)

Create a new product variant in Jumpseller. See the documentation

Full schema: https://pipedream.com/apps/jumpseller/actions/create-product-variant.md

### `jumpseller-list-product-id-options` — List Product Options (Read-only)

Retrieves available options for the Product field.

Full schema: https://pipedream.com/apps/jumpseller/actions/list-product-id-options.md

### `jumpseller-update-product` — Update Product (Write)

Update an existing product in Jumpseller. See the documentation

Full schema: https://pipedream.com/apps/jumpseller/actions/update-product.md

## Triggers (2)

### `jumpseller-order-paid` — Order Paid (Instant)

Emit new event when an order is paid in Jumpseller. See the documentation

Full schema: https://pipedream.com/apps/jumpseller/triggers/order-paid.md

### `jumpseller-order-updated` — Order Updated (Instant)

Emit new event when an order is updated in Jumpseller. See the documentation

Full schema: https://pipedream.com/apps/jumpseller/triggers/order-updated.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
