View as Markdown
Fireflies icon

Fireflies ACTION

Ask Question About Meeting

Ask AskFred, Fireflies' AI assistant, a natural language question about a meeting's content — for example, action items, decisions made, or a summary of a specific topic. Starts a new AskFred conversation thread; use Continue AskFred Conversation to ask follow-up questions in the same thread. Requires AI credits on the connected Fireflies account. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Fireflies account once, then configure and run Ask Question About Meeting 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-ask-question-about-meeting",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    fireflies: { authProvisionId: "apn_xxxxxxx" },
    query: "Question",
    meetingId: "Meeting ID",
  },
})

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.

Ask Question About Meeting inputs
Property Type Description
query Question string
The natural language question to ask AskFred, e.g. What were the action items from this meeting?. Maximum 2000 characters.
Required
meetingId Meeting ID string
Scope the question to a single meeting. Use Find Meeting by ID or Find Recent Meeting to look up a meeting ID. Omit to search across multiple meetings using filters instead.
Optional Dynamic
filters Filters object
Advanced: search across multiple meetings instead of a single one. Ignored if Meeting ID is set. Example: {"start_time": "2024-01-01T00:00:00Z", "end_time": "2024-01-31T23:59:59Z", "organizers": ["user_123"]}. Supported keys: start_time, end_time, channel_ids, organizers, participants, transcript_ids.
Optional
responseLanguage Response Language string
Language code for the AI's response, e.g. en or es. Defaults to English.
Optional
formatMode Format Mode string
How the answer should be formatted. Accepted values are markdown or plaintext.
Optional

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-ask-question-about-meeting
Version
0.0.2
App
Fireflies
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes