# Miro Developer App — Pipedream Connect

> The Visual Collaboration Platform for Every Team.

- API slug: `miro_custom_app` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Web & App Development
- Website: https://miro.com
- This page (HTML): https://pipedream.com/apps/miro-custom-app
- Tools: 14 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: miro_custom_app`

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Board:
const result = await mcp.callTool({
  name: "miro_custom_app-create-board",
  arguments: {
    name: "Board Name",
    description: "Board Description",
  },
})
```

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

## API proxy

For a Miro Developer App 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.miro.com/v1/oauth-token

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkubWlyby5jb20vdjEvb2F1dGgtdG9rZW4?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: "miro_custom_app-create-board",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    miro_custom_app: { authProvisionId: "apn_xxxxxxx" },
    name: "Board Name",
    description: "Board Description",
  },
})
```

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

## Actions (14)

### `miro_custom_app-create-board` — Create Board (Write)

Creates a Miro board. See the docs.

Full schema: https://pipedream.com/apps/miro-custom-app/actions/create-board.md

### `miro_custom_app-create-card-item` — Create Card Item (Write)

Creates a card item on a Miro board. See the documentation.

Full schema: https://pipedream.com/apps/miro-custom-app/actions/create-card-item.md

### `miro_custom_app-create-shape` — Create Shape (Write)

Creates a shape on a Miro board. See the docs.

Full schema: https://pipedream.com/apps/miro-custom-app/actions/create-shape.md

### `miro_custom_app-create-sticky-note` — Create Sticky Note (Write)

Creates a sticky note on a Miro board. See the docs.

Full schema: https://pipedream.com/apps/miro-custom-app/actions/create-sticky-note.md

### `miro_custom_app-delete-board` — Delete Board (Write)

Deletes a Miro board. See the docs.

Full schema: https://pipedream.com/apps/miro-custom-app/actions/delete-board.md

### `miro_custom_app-delete-item` — Delete Item (Write)

Deletes an item from a Miro board. See the docs.

Full schema: https://pipedream.com/apps/miro-custom-app/actions/delete-item.md

### `miro_custom_app-get-board` — Get Board (Read-only)

Returns a Miro board. See the docs.

Full schema: https://pipedream.com/apps/miro-custom-app/actions/get-board.md

### `miro_custom_app-get-items` — Get Items (Read-only)

Returns items on a Miro board. See the docs.

Full schema: https://pipedream.com/apps/miro-custom-app/actions/get-items.md

### `miro_custom_app-get-specific-item` — Get Specific Item (Read-only)

Returns a specific item on a Miro board. See the docs.

Full schema: https://pipedream.com/apps/miro-custom-app/actions/get-specific-item.md

### `miro_custom_app-list-boards` — List Boards (Read-only)

Returns a user's Miro boards. See the docs.

Full schema: https://pipedream.com/apps/miro-custom-app/actions/list-boards.md

### `miro_custom_app-update-board` — Update Board (Write)

Updates a Miro board. See the docs.

Full schema: https://pipedream.com/apps/miro-custom-app/actions/update-board.md

### `miro_custom_app-update-card-item` — Update Card Item (Write)

Updates a card item on a Miro board. See the documentation.

Full schema: https://pipedream.com/apps/miro-custom-app/actions/update-card-item.md

### `miro_custom_app-update-shape` — Update Shape (Write)

Updates content of an existing shape on a Miro board. See the docs.

Full schema: https://pipedream.com/apps/miro-custom-app/actions/update-shape.md

### `miro_custom_app-update-sticky-note` — Update Sticky Note (Write)

Updates content of an existing sticky note on a Miro board. See the docs.

Full schema: https://pipedream.com/apps/miro-custom-app/actions/update-sticky-note.md

## Triggers (3)

### `miro_custom_app-card-item-updated` — Card Item Updated (Polling)

Emit new event when a card item is updated on a Miro board

Full schema: https://pipedream.com/apps/miro-custom-app/triggers/card-item-updated.md

### `miro_custom_app-item-position-changed` — Item Position Changed (Polling)

Emit new event when an item's position changes in a Miro Custom App.

Full schema: https://pipedream.com/apps/miro-custom-app/triggers/item-position-changed.md

### `miro_custom_app-new-card-item-created` — New Card Item Created (Polling)

Emit new event when a new card item is created on a Miro board

Full schema: https://pipedream.com/apps/miro-custom-app/triggers/new-card-item-created.md

---

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