First-party app
Streak

Streak

Manage Streak CRM pipelines, boxes, stages, fields, contacts, organizations and tasks over the Streak API v1.

stable Customer Relationship Management

About

Streak ships in the w6w first-party pack. It declares 40 actions, 2 health checks, and the host runs its code in a sandbox that never sees the credential.

App id
io.w6w.streak
Version
0.1.1
Author
w6w
Licence
MIT
Categories
Customer Relationship Management

Overview

Streak is a CRM built directly on top of Gmail, and this app manages its pipelines, boxes (Streak’s term for a deal or record), stages, custom fields, contacts, organizations and tasks over the Streak API.

Pipelines, stages, fields, boxes and tasks each support the full list/get/create/update/delete lifecycle; contacts support the same create/get/update/delete lifecycle, found through the general search rather than a dedicated list call; organizations support only get, update and delete, since Streak derives an organization from its boxes and contacts rather than letting you create one directly. A general search reaches across boxes, contacts and organizations at once, and a separate name-scoped search covers boxes alone. Custom fields are modeled explicitly, since a Streak pipeline’s real data usually lives in fields the account defined itself rather than in the built-in ones.

Good for creating a Streak box and its contacts automatically from a form submission or another CRM, moving a deal along a pipeline as an external status changes, keeping contact and organization records in sync, and managing tasks tied to a box from an outside scheduling or reminder tool.

Build with Streak

Three routes to the same 40 actions. The Workflow tab is generated from Streak's own manifest and carries its real ids, so it is copy-pasteable; the Code and CLI examples are the same call for any action on any app, so every app-specific value in them is a blank you fill in.

Create Box

box-create

Create a new box (record) in a pipeline.

Delete Box

box-delete

Permanently delete a box (record).

Get Box Field Value

box-field-value-get

Read one custom field's value on one box.

Update Box Field Value

box-field-value-update

Set one custom field's value on one box.

Get Box

box-get

Fetch one box (record), including its custom field values.

List Boxes

box-list

List boxes (records) in a pipeline, optionally filtered to one stage.

Search Boxes By Name

box-search-by-name

Search boxes by name.

Update Box

box-update

Edit a box's name, notes, stage, assignees or custom field values.

Create Contact

contact-create

Create a contact for a team, keyed by email address.

Delete Contact

contact-delete

Permanently delete a contact.

Get Contact

contact-get

Fetch one contact.

Update Contact

contact-update

Edit a contact's name, title or email addresses.

Create Pipeline Field

field-create

Add a new custom field to a pipeline.

Delete Pipeline Field

field-delete

Delete a custom field from a pipeline, along with its values on every box.

Get Pipeline Field

field-get

Fetch one field's name and type.

List Pipeline Fields

field-list

List every custom field defined on a pipeline.

Update Pipeline Field

field-update

Rename a pipeline field. A field's type cannot be changed once created.

Delete Organization

organization-delete

Permanently delete an organization.

Get Organization

organization-get

Fetch one organization.

Update Organization

organization-update

Edit an organization's name, industry or contact details.

Create Pipeline

pipeline-create

Create a new pipeline for a team.

Delete Pipeline

pipeline-delete

Permanently delete a pipeline and every box in it. This cannot be undone.

Get Pipeline

pipeline-get

Fetch one pipeline, including its stages, fields and stage order.

List Pipelines

pipeline-list

List every pipeline this connection can see.

Update Pipeline

pipeline-update

Rename a pipeline, change its sharing, or reorder its stages.

Search

search

Search boxes, contacts and organizations by free text.

Create Stage

stage-create

Add a new stage to a pipeline.

Delete Stage

stage-delete

Delete a stage from a pipeline. Boxes in that stage are not deleted.

Get Stage

stage-get

Fetch one stage's name.

List Stages

stage-list

List every stage in a pipeline.

Update Stage

stage-update

Rename a stage.

Create Task

task-create

Add a task to a box.

Delete Task

task-delete

Permanently delete a task.

Get Task

task-get

Fetch one task.

List Tasks On Box

task-list

List every task on a box.

Update Task

task-update

Edit a task's text, due date or completion status.

Get Team

team-get

Fetch one team's members and settings.

List My Teams

team-list

List every team this connection's user belongs to.

Get User

user-get

Fetch the public profile for a Streak user by key.

Get Current User

user-get-current

Fetch the Streak user object for this connection's own API key.

A workflow step names the app and the action, and the editor fills in the connection when you pick one. This is the Step shape from the workflow spec, carrying Streak's real ids.

{
  "manifestVersion": "2",
  "name": "streak-example",
  "steps": [
    {
      "id": "box-create",
      "uses": {
        "app": "io.w6w.streak",
        "action": "box-create",
        "connection": "conn_YOUR_CONNECTION_ID"
      },
      "with": {
        "pipelineKey": "<pipelineKey>",
        "name": "<name>"
      }
    }
  ]
}

Here are some of the things you can do

  • Create Box

    perform
    box-create
  • Get Box Field Value

    read
    box-field-value-get
  • Update Box Field Value

    perform
    box-field-value-update
  • Get Box

    read
    box-get
  • List Boxes

    search
    box-list

+35 more actions available

Every app-specific value here is a blank you have to fill in. An app action is reached through the connection that authenticates it, so the address is a connection id, not the app id — and connections belong to your account, so a public page cannot know yours. Create one for Streak, then fill in the three blanks: conn_YOUR_CONNECTION_ID, the action key, and the parameters that action declares. The call itself is real — the shape is transcribed from the studio's own snippet builder, which prints the same kind of blanks — but nothing in it is specific to Streak. The Workflow tab is where this app's real ids are.

Install
npm install @w6w/sdk
yarn add @w6w/sdk
pnpm add @w6w/sdk
deno add npm:@w6w/sdk
Code
import { W6wClient, isActionRun } from "@w6w/sdk";

// Reads W6W_BASE_URL and W6W_TOKEN from the environment when omitted.
const client = new W6wClient();

const envelope = await client.run({
  urn: "conn_YOUR_CONNECTION_ID",
  action: "box-create",
  payload: {
    pipelineKey: "<value>",
    name: "<value>",
    // stageKey: "<value>",
    // notes: "<value>",
    // assignedToEmails: "<value>",
  },
});

if (isActionRun(envelope)) console.log(envelope.value);
Install the CLI
npm install -g @w6w/cli
CLI
w6w run conn_YOUR_CONNECTION_ID --action box-create --payload '{"pipelineKey":"<value>","name":"<value>"}'

Give an AI agent Streak — without giving it Streak's credentials. One MCP endpoint exposes every app, function and workflow the caller is entitled to, as tools it can discover and run. Access is granted per team while we onboard.

One tool call
{
  "name": "w6w_invoke",
  "arguments": {
    "ref": "app:io.w6w.streak#box-create",
    "input": {
      "pipelineKey": "<pipelineKey>",
      "name": "<name>"
    }
  }
}

Every tool names its target with a single ref. The app: form above doesn't name a connection at all — the host resolves which of the caller's Streak connections to sign with, and refuses rather than guesses when the answer is ambiguous.

What the agent gets

Credentials it can't read

The token is attached host-side, at the moment of the call. It is never a tool argument, never in the model's context, and never in a transcript — so a prompt injection has nothing to exfiltrate.

A tool surface scoped to the caller

Tools are derived per end user from what that person has actually connected and is entitled to — not one shared bot identity carrying the union of everyone's access.

A durable workflow in one call

Multi-step work runs on the workflow engine and returns a run handle the agent can poll — retries, branching and state survive the conversation that started them.

Health-aware discovery

Streak's declared health checks are on the surface too, so an agent can tell "the vendor is down" from "your credential expired" before it burns a retry on either.

The MCP surface is part of the hosted platform. Streak itself is MIT, and the runtime that executes it is source-available (FSL).

Request MCP access

Health checks

Streak declares its own checks, so its health is a property of the app rather than something the host guesses at.

service

Streak platform status

Component status from status.streak.com, keyed off the 'Streak API' component this app actually calls through — the other four components (streak.com, and the Gmail/Android/iOS clients) are reported as context, not folded into the verdict.

quota

Rate limit headroom

Streak publishes no rate-limit or quota surface to probe.