View as Markdown
Fireflies icon

Fireflies ACTION

List Clips

List meeting clips (Fireflies "bites"). The API requires at least one filter, so set at least one of Meeting ID, Mine Only, or My Team OnlyMine Only defaults to true, which lists the clips created by the connected account. Use this to look up a clip's id for Find Clip by ID, or to check which clips already exist for a meeting before creating another with Create Meeting Clip. Each result includes the clip's render status and, once that status is ready, its media URLs in sources[].src. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Fireflies account once, then configure and run List Clips from your backend or agent.

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: "fireflies-list-clips",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    fireflies: { authProvisionId: "apn_xxxxxxx" },
    meetingId: "Meeting ID",
    mine: true,
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

List Clips inputs
Property Type Description
meetingId Meeting ID string
Only return clips taken from this meeting. Use Find Meeting by ID or Find Recent Meeting to look up a meeting ID. Omit to list clips across all meetings, in which case Mine Only or My Team Only must be set.
Optional Dynamic
mine Mine Only boolean
Only return clips created by the connected account. Defaults to true; set to false when filtering by Meeting ID or My Team Only instead.
Optional
myTeam My Team Only boolean
Only return clips created by members of your Fireflies team.
Optional
page Page integer
The page of results to retrieve, starting at 0. Each page returns up to 50 results.
Required

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
fireflies-list-clips
Version
0.0.2
App
Fireflies
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes