# DailyBot — Pipedream Connect

> The go-to assistant for your work chat. DailyBot has built-in skills to help you run async meetings, track and celebrate milestones, and automate routines. 🤖💬

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

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

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

const { tools } = await mcp.listTools()

// e.g. run Give Kudos:
const result = await mcp.callTool({
  name: "dailybot-give-kudos",
  arguments: {
    targetUsers: ["Target User IDs"],
    messageContent: "Message Content",
  },
})
```

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

## API proxy

For a DailyBot 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.dailybot.com/v1/me/

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuZGFpbHlib3QuY29tL3YxL21lLw?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: "dailybot-give-kudos",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    dailybot: { authProvisionId: "apn_xxxxxxx" },
    targetUsers: ["Target User IDs"],
    messageContent: "Message Content",
  },
})
```

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

## Actions (4)

### `dailybot-give-kudos` — Give Kudos (Write)

Sends kudos to selected user(s) using DailyBot. See the documentation

Full schema: https://pipedream.com/apps/dailybot/actions/give-kudos.md

### `dailybot-list-target-teams-options` — List Target Teams IDs Options (Read-only)

Retrieves available options for the Target Teams IDs field.

Full schema: https://pipedream.com/apps/dailybot/actions/list-target-teams-options.md

### `dailybot-list-target-users-options` — List Target User IDs Options (Read-only)

Retrieves available options for the Target User IDs field.

Full schema: https://pipedream.com/apps/dailybot/actions/list-target-users-options.md

### `dailybot-send-message` — Send Message (Write)

Dispatches a message to designated users or groups in DailyBot. Required are the message content and recipients' IDs, and channels or rooms are optional targets. See the documentation

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

## Triggers (3)

### `dailybot-new-check-in-response-completed-instant` — New Check-In Response Completed (Instant) (Instant)

Emit new event when a user from your organization completes a response to a check-in in DailyBot.

Full schema: https://pipedream.com/apps/dailybot/triggers/new-check-in-response-completed-instant.md

### `dailybot-new-form-response-completed-instant` — New Form Response Completed (Instant) (Instant)

Emit new event when a response is added to a form in DailyBot by any user from your organization or an external user.

Full schema: https://pipedream.com/apps/dailybot/triggers/new-form-response-completed-instant.md

### `dailybot-kudos-given-instant` — New Kudos Given (Instant) (Instant)

Emit new event every time any kudos are given to someone in your DailyBot organization.

Full schema: https://pipedream.com/apps/dailybot/triggers/kudos-given-instant.md

---

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