# Channable — Pipedream Connect

> Multichannel eCommerce Platform

- API slug: `channable` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Commerce
- Website: https://www.channable.com
- This page (HTML): https://pipedream.com/apps/channable
- Tools: 3 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: channable`

```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": "channable",
      },
    },
  },
)

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

const { tools } = await mcp.listTools()

// e.g. run List Stock Update ID Options:
const result = await mcp.callTool({
  name: "channable-list-stock-update-id-options",
  arguments: {
    page: 10,
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.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: "channable-list-stock-update-id-options",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    channable: { authProvisionId: "apn_xxxxxxx" },
    page: 10,
  },
})
```

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

## Actions (3)

### `channable-list-stock-update-id-options` — List Stock Update ID Options (Read-only)

Retrieves available options for the Stock Update ID field.

Full schema: https://pipedream.com/apps/channable/actions/list-stock-update-id-options.md

### `channable-list-stock-updates` — List Stock Updates (Read-only)

List stock updates for a company and project. See the documentation

Full schema: https://pipedream.com/apps/channable/actions/list-stock-updates.md

### `channable-update-stock-update` — Update Stock Update (Write)

Update a stock update for a company and project. See the documentation

Full schema: https://pipedream.com/apps/channable/actions/update-stock-update.md

## Triggers (2)

### `channable-new-stock-update-created` — New Stock Update Created (Polling)

Emit new event when a new stock update is created. See the documentation

Full schema: https://pipedream.com/apps/channable/triggers/new-stock-update-created.md

### `channable-stock-update-updated` — Stock Update Updated (Polling)

Emit new event when a stock update is updated. See the documentation

Full schema: https://pipedream.com/apps/channable/triggers/stock-update-updated.md

---

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