# Picqer — Pipedream Connect

> Warehouse software for online stores

- API slug: `picqer` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Commerce
- Website: https://picqer.com/en
- This page (HTML): https://pipedream.com/apps/picqer
- Tools: 26 actions · 1 trigger

## 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: picqer`

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

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

const { tools } = await mcp.listTools()

// e.g. run Add Comment To Order:
const result = await mcp.callTool({
  name: "picqer-add-order-comment",
  arguments: {
    orderId: "Order ID",
    body: "Comment Body",
  },
})
```

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: "picqer-add-order-comment",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    picqer: { authProvisionId: "apn_xxxxxxx" },
    orderId: "Order ID",
    body: "Comment Body",
  },
})
```

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

## Actions (26)

### `picqer-add-order-comment` — Add Comment To Order (Write)

Add a comment to an order in Picqer. See the documentation

Full schema: https://pipedream.com/apps/picqer/actions/add-order-comment.md

### `picqer-add-return-comment` — Add Comment To Return (Write)

Add a comment to a return in Picqer. See the documentation

Full schema: https://pipedream.com/apps/picqer/actions/add-return-comment.md

### `picqer-add-order-tags` — Add Order Tags (Write)

Associates a tag with an order. See the documentation

Full schema: https://pipedream.com/apps/picqer/actions/add-order-tags.md

### `picqer-add-product-to-order` — Add Product To Order (Write)

Adds a single product to concept orders only. See the documentation

Full schema: https://pipedream.com/apps/picqer/actions/add-product-to-order.md

### `picqer-cancel-order` — Cancel Order (Write)

Removes orders with 'concept' or 'expected' status only. See the documentation

Full schema: https://pipedream.com/apps/picqer/actions/cancel-order.md

### `picqer-change-order-to-concept` — Change Order To Concept (Write)

Converts expected orders back to concept status for editing. See the documentation

Full schema: https://pipedream.com/apps/picqer/actions/change-order-to-concept.md

### `picqer-create-order` — Create Picqer Order (Write)

Create a new order in Picqer. See the documentation

Full schema: https://pipedream.com/apps/picqer/actions/create-order.md

### `picqer-get-customer` — Get Customer (Read-only)

Get a customer in Picqer. See the documentation

Full schema: https://pipedream.com/apps/picqer/actions/get-customer.md

### `picqer-get-order-comments` — Get Order Comments (Read-only)

Retrieves comments linked to an order. See the documentation

Full schema: https://pipedream.com/apps/picqer/actions/get-order-comments.md

### `picqer-get-order-tags` — Get Order Tags (Read-only)

Retrieves all tags associated with an order. See the documentation

Full schema: https://pipedream.com/apps/picqer/actions/get-order-tags.md

### `picqer-get-picklist` — Get Picklist (Read-only)

Get a picklist in Picqer. See the documentation

Full schema: https://pipedream.com/apps/picqer/actions/get-picklist.md

### `picqer-get-order` — Get Picqer Order (Read-only)

Get an order in Picqer. See the documentation

Full schema: https://pipedream.com/apps/picqer/actions/get-order.md

### `picqer-get-status-per-order-line` — Get Status Per Order Line (Read-only)

Get the status per order line in Picqer. See the documentation

Full schema: https://pipedream.com/apps/picqer/actions/get-status-per-order-line.md

### `picqer-list-customer-id-options` — List Customer ID Options (Read-only)

Retrieves available options for the Customer ID field.

Full schema: https://pipedream.com/apps/picqer/actions/list-customer-id-options.md

### `picqer-list-fulfillment-customer-id-options` — List Fulfillment Customer ID Options (Read-only)

Retrieves available options for the Fulfillment Customer ID field.

Full schema: https://pipedream.com/apps/picqer/actions/list-fulfillment-customer-id-options.md

### `picqer-list-picklist-id-options` — List Picklist ID Options (Read-only)

Retrieves available options for the Picklist ID field.

Full schema: https://pipedream.com/apps/picqer/actions/list-picklist-id-options.md

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

Retrieves available options for the Product ID field.

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

### `picqer-list-return-id-options` — List Return ID Options (Read-only)

Retrieves available options for the Return ID field.

Full schema: https://pipedream.com/apps/picqer/actions/list-return-id-options.md

### `picqer-list-shipping-provider-id-options` — List Shipping Provider ID Options (Read-only)

Retrieves available options for the Shipping Provider ID field.

Full schema: https://pipedream.com/apps/picqer/actions/list-shipping-provider-id-options.md

### `picqer-list-tag-id-options` — List Tag ID Options (Read-only)

Retrieves available options for the Tag ID field.

Full schema: https://pipedream.com/apps/picqer/actions/list-tag-id-options.md

### `picqer-list-template-id-options` — List Template ID Options (Read-only)

Retrieves available options for the Template ID field.

Full schema: https://pipedream.com/apps/picqer/actions/list-template-id-options.md

### `picqer-list-warehouse-id-options` — List Warehouse ID Options (Read-only)

Retrieves available options for the Warehouse ID field.

Full schema: https://pipedream.com/apps/picqer/actions/list-warehouse-id-options.md

### `picqer-pause-order` — Pause Order (Write)

Suspends processing of orders with 'processing' status. Pauses underlying picklists. See the documentation

Full schema: https://pipedream.com/apps/picqer/actions/pause-order.md

### `picqer-process-order` — Process Order (Write)

Finalizes a concept or expected order and creates picklists or backorders automatically. Note: The processing itself will take place in the background after you receive the response. See the documentation

Full schema: https://pipedream.com/apps/picqer/actions/process-order.md

### `picqer-search-orders` — Search Picqer Orders (Read-only)

Search for orders in Picqer. See the documentation

Full schema: https://pipedream.com/apps/picqer/actions/search-orders.md

### `picqer-update-order` — Update Picqer Order (Write)

Update an order in Picqer. See the documentation

Full schema: https://pipedream.com/apps/picqer/actions/update-order.md

## Triggers (1)

### `picqer-new-event-instant` — New Event Instant (Instant)

Emit new event when Picqer sends a webhook matched with selected event. See the documentation

Full schema: https://pipedream.com/apps/picqer/triggers/new-event-instant.md

---

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