# Sendcloud — Pipedream Connect

> Europe’s #1 shipping automation platform

- API slug: `sendcloud` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Business Management
- Website: https://www.sendcloud.com
- This page (HTML): https://pipedream.com/apps/sendcloud
- Tools: 24 actions · 5 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: sendcloud`

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

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

const { tools } = await mcp.listTools()

// e.g. run Bulk PDF Label Printing:
const result = await mcp.callTool({
  name: "sendcloud-bulk-pdf-label-printing",
  arguments: {
    parcels: [10],
  },
})
```

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

## API proxy

For a Sendcloud 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://panel.sendcloud.sc/api/v2/parcels

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9wYW5lbC5zZW5kY2xvdWQuc2MvYXBpL3YyL3BhcmNlbHM?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: "sendcloud-bulk-pdf-label-printing",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    sendcloud: { authProvisionId: "apn_xxxxxxx" },
    parcels: [10],
  },
})
```

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

## Actions (24)

### `sendcloud-bulk-pdf-label-printing` — Bulk PDF Label Printing (Write)

Bulk PDF label printing. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/bulk-pdf-label-printing.md

### `sendcloud-create-a-parcel` — Create a Parcel (Write)

Creates a new parcel under your Sendcloud API credentials. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/create-a-parcel.md

### `sendcloud-create-update-integration-shipment` — Create Or Update Integration Shipment (Write)

Create or update an integration shipment. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/create-update-integration-shipment.md

### `sendcloud-create-return` — Create Return (Write)

Create a return. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/create-return.md

### `sendcloud-get-current-user` — Get Current User (Read-only)

Get the authenticated user info. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/get-current-user.md

### `sendcloud-get-label` — Get Label (Read-only)

Retrieve a label by parcel ID. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/get-label.md

### `sendcloud-get-parcel` — Get Parcel (Read-only)

Retrieve a parcel by ID. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/get-parcel.md

### `sendcloud-get-return` — Get Return (Read-only)

Retrieve a return by ID. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/get-return.md

### `sendcloud-get-return-portal-settings` — Get Return Portal Settings (Read-only)

Get return portal settings for the current brand/user. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/get-return-portal-settings.md

### `sendcloud-get-sender-address` — Get Sender Address (Read-only)

Retrieve a sender address by ID. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/get-sender-address.md

### `sendcloud-get-service-point` — Get Service Point (Read-only)

Retrieve a service point by ID. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/get-service-point.md

### `sendcloud-get-shipping-method` — Get Shipping Method (Read-only)

Retrieve a shipping method by ID. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/get-shipping-method.md

### `sendcloud-get-tracking-info` — Get Tracking Info (Read-only)

Retrieve tracking information of a parcel. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/get-tracking-info.md

### `sendcloud-list-integration-shipments` — List Integration Shipments (Read-only)

List integration shipments. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/list-integration-shipments.md

### `sendcloud-list-parcel-documents` — List Parcel Documents (Read-only)

List parcel documents. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/list-parcel-documents.md

### `sendcloud-list-parcel-statuses` — List Parcel Statuses (Read-only)

List parcel statuses. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/list-parcel-statuses.md

### `sendcloud-list-parcels` — List Parcels (Read-only)

Retrieves a list of all the parcels under your API credentials. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/list-parcels.md

### `sendcloud-list-returns` — List Returns (Read-only)

List returns. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/list-returns.md

### `sendcloud-list-sender-addresses` — List Sender Addresses (Read-only)

List sender addresses for the authenticated user. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/list-sender-addresses.md

### `sendcloud-list-service-point-carriers` — List Service Point Carriers (Read-only)

List carriers that support service points. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/list-service-point-carriers.md

### `sendcloud-list-service-points` — List Service Points (Read-only)

List service points. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/list-service-points.md

### `sendcloud-list-shipping-methods` — List Shipping Methods (Read-only)

List shipping methods. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/list-shipping-methods.md

### `sendcloud-update-a-parcel` — Update a Parcel (Write)

Updates a parcel under your API credentials. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/update-a-parcel.md

### `sendcloud-validate-return` — Validate Return (Write)

Validate a return. See the documentation

Full schema: https://pipedream.com/apps/sendcloud/actions/validate-return.md

## Triggers (5)

### `sendcloud-parcel-created` — New Parcel Created (Polling)

Emit new event each time a parcel is created.

Full schema: https://pipedream.com/apps/sendcloud/triggers/parcel-created.md

### `sendcloud-return-created` — New Return Created (Polling)

Emit new event each time a return is created.

Full schema: https://pipedream.com/apps/sendcloud/triggers/return-created.md

### `sendcloud-parcel-status-changed` — Parcel Status Changed (Polling)

Emit new event each time a parcel status changes.

Full schema: https://pipedream.com/apps/sendcloud/triggers/parcel-status-changed.md

### `sendcloud-parcel-updated` — Parcel Updated (Polling)

Emit new event each time a parcel is updated.

Full schema: https://pipedream.com/apps/sendcloud/triggers/parcel-updated.md

### `sendcloud-return-updated` — Return Updated (Polling)

Emit new event each time a return is updated.

Full schema: https://pipedream.com/apps/sendcloud/triggers/return-updated.md

---

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