# Streak — Pipedream Connect

> Streak is a flexible CRM and process management system that lives inside your Gmail inbox.

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

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Box:
const result = await mcp.callTool({
  name: "streak-create-box",
  arguments: {
    pipelineId: "Pipeline",
    name: "Name",
  },
})
```

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

## API proxy

For a Streak 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://www.streak.com/api/v1/users/me

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

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

## Actions (7)

### `streak-create-box` — Create Box (Write)

Create a new box in Streak. See the docs

Full schema: https://pipedream.com/apps/streak/actions/create-box.md

### `streak-create-task` — Create Task (Write)

Create a new task in a box. See the docs

Full schema: https://pipedream.com/apps/streak/actions/create-task.md

### `streak-link-boxes` — Link Boxes (Write)

Link boxes to a specific box. See the docs

Full schema: https://pipedream.com/apps/streak/actions/link-boxes.md

### `streak-list-pipeline-id-options` — List Pipeline Options (Read-only)

Retrieves available options for the Pipeline field.

Full schema: https://pipedream.com/apps/streak/actions/list-pipeline-id-options.md

### `streak-list-team-id-options` — List Team Options (Read-only)

Retrieves available options for the Team field.

Full schema: https://pipedream.com/apps/streak/actions/list-team-id-options.md

### `streak-update-box` — Update Box (Write)

Update the properties for a box. To update field values use Update Box Field Value. See the docs

Full schema: https://pipedream.com/apps/streak/actions/update-box.md

### `streak-update-box-field-value` — Update Box Field Value (Write)

Update the values of the fields for a box. See the docs

Full schema: https://pipedream.com/apps/streak/actions/update-box-field-value.md

## Triggers (11)

### `streak-box-changed-pipeline` — Box Changed Pipeline (Instant) (Instant)

Emit new event when a box changes pipelines.

Full schema: https://pipedream.com/apps/streak/triggers/box-changed-pipeline.md

### `streak-box-changed-stage` — Box Changed Stage (Instant) (Instant)

Emit new event when a box's stage is updated in a pipeline.

Full schema: https://pipedream.com/apps/streak/triggers/box-changed-stage.md

### `streak-new-box` — New Box (Instant) (Instant)

Emit new event when a new box is created in a pipeline.

Full schema: https://pipedream.com/apps/streak/triggers/new-box.md

### `streak-new-comment` — New Comment (Instant) (Instant)

Emit new event when a new comment is created within a pipeline.

Full schema: https://pipedream.com/apps/streak/triggers/new-comment.md

### `streak-new-contact` — New Contact (Instant) (Instant)

Emit new event when a new contact is created within a team.

Full schema: https://pipedream.com/apps/streak/triggers/new-contact.md

### `streak-new-email-on-box` — New Email on Box (Instant) (Instant)

Emit new event when an email is added to a box in a pipeline.

Full schema: https://pipedream.com/apps/streak/triggers/new-email-on-box.md

### `streak-new-task` — New Task (Instant) (Instant)

Emit new event when a new task is created in a pipeline.

Full schema: https://pipedream.com/apps/streak/triggers/new-task.md

### `streak-new-task-due` — New Task Due (Instant) (Instant)

Emit new event when a new task is created in a pipeline.

Full schema: https://pipedream.com/apps/streak/triggers/new-task-due.md

### `streak-task-completed` — Task Completed (Instant) (Instant)

Emit new event when a task is completed in a pipeline.

Full schema: https://pipedream.com/apps/streak/triggers/task-completed.md

### `streak-updated-box` — Updated Box (Instant) (Instant)

Emit new event when a box is updated in a pipeline.

Full schema: https://pipedream.com/apps/streak/triggers/updated-box.md

### `streak-updated-contact` — Updated Contact (Instant) (Instant)

Emit new event when a contact is updated within a team.

Full schema: https://pipedream.com/apps/streak/triggers/updated-contact.md

---

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