# Wise — Pipedream Connect

> Wise, Formerly TransferWise: Transfer money or spend abroad

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

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Quote:
const result = await mcp.callTool({
  name: "wise-create-quote",
  arguments: {
    profileId: "Profile ID",
    sourceCurrency: "Source Currency",
  },
})
```

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

## API proxy

For a Wise 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.transferwise.com/v1/profiles

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkudHJhbnNmZXJ3aXNlLmNvbS92MS9wcm9maWxlcw?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: "wise-create-quote",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    wise: { authProvisionId: "apn_xxxxxxx" },
    profileId: "Profile ID",
    sourceCurrency: "Source Currency",
  },
})
```

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

## Actions (10)

### `wise-create-quote` — Create Quote (Write)

Creates a quote. See docs here

Full schema: https://pipedream.com/apps/wise/actions/create-quote.md

### `wise-create-recipient-account` — Create Recipient Account (Write)

Get a specific recipient account. See docs here

Full schema: https://pipedream.com/apps/wise/actions/create-recipient-account.md

### `wise-create-transfer` — Create Transfer (Write)

Creates a transfer. See docs here

Full schema: https://pipedream.com/apps/wise/actions/create-transfer.md

### `wise-fund-transfer` — Fund Transfer (Write)

Funds a transfer. See docs here

Full schema: https://pipedream.com/apps/wise/actions/fund-transfer.md

### `wise-get-balance` — Get Balance (Read-only)

Get a balance. See docs here

Full schema: https://pipedream.com/apps/wise/actions/get-balance.md

### `wise-get-exchange-rates` — Get Exchange Rates (Read-only)

Get an exchange rates. See docs here

Full schema: https://pipedream.com/apps/wise/actions/get-exchange-rates.md

### `wise-get-recipient-account` — Get Recipient Account (Read-only)

Get a specific recipient account. See docs here

Full schema: https://pipedream.com/apps/wise/actions/get-recipient-account.md

### `wise-get-transfer` — Get Transfer (Read-only)

Get a transfer. See docs here

Full schema: https://pipedream.com/apps/wise/actions/get-transfer.md

### `wise-list-profile-id-options` — List Profile ID Options (Read-only)

Retrieves available options for the Profile ID field.

Full schema: https://pipedream.com/apps/wise/actions/list-profile-id-options.md

### `wise-list-transfer-id-options` — List Transfer ID Options (Read-only)

Retrieves available options for the Transfer ID field.

Full schema: https://pipedream.com/apps/wise/actions/list-transfer-id-options.md

## Triggers (3)

### `wise-new-transfer-completed` — New Transfer Completed (Instant) (Instant)

Emit new event for a transfer completed.

Full schema: https://pipedream.com/apps/wise/triggers/new-transfer-completed.md

### `wise-new-transfer-created` — New Transfer Created (Instant) (Instant)

Emit new event for a transfer created.

Full schema: https://pipedream.com/apps/wise/triggers/new-transfer-created.md

### `wise-new-transfer-state-changed` — New Transfer State Changed (Instant) (Instant)

Emit new event for a transfer created.

Full schema: https://pipedream.com/apps/wise/triggers/new-transfer-state-changed.md

---

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