# Bird — Pipedream Connect

> Business in a box. Grow, Manage, Automate your company. Everything you need in one app.

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

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Contact:
const result = await mcp.callTool({
  name: "message_bird-create-contact",
  arguments: {
    phone: "Phone",
    firstName: "First Name",
  },
})
```

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

## API proxy

For a Bird 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://rest.messagebird.com/balance

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9yZXN0Lm1lc3NhZ2ViaXJkLmNvbS9iYWxhbmNl?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: "message_bird-create-contact",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    message_bird: { authProvisionId: "apn_xxxxxxx" },
    phone: "Phone",
    firstName: "First Name",
  },
})
```

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

## Actions (3)

### `message_bird-create-contact` — Create Contact (Write)

Creates a new contact. See the documentation

Full schema: https://pipedream.com/apps/message-bird/actions/create-contact.md

### `message_bird-send-sms` — Send SMS (Write)

Sends an SMS message. See the documentation

Full schema: https://pipedream.com/apps/message-bird/actions/send-sms.md

### `message_bird-send-voice-message` — Send Voice Message (Write)

Sends a voice message. See the documentation

Full schema: https://pipedream.com/apps/message-bird/actions/send-voice-message.md

## Triggers (1)

### `message_bird-new-sms-message-received` — New SMS Message Received (Polling)

Emit new event when a new SMS message is received. See the documentation

Full schema: https://pipedream.com/apps/message-bird/triggers/new-sms-message-received.md

---

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