View as Markdown
Read AI icon

Read AI ACTION

Get Meeting

Retrieves complete details for a single Read AI meeting, including optional content expansions. Use List Meetings first to find the meeting ID. By default returns only meeting metadata (title, participants, platform, start/end time, duration). Enable specific expansions to include richer content — only request what you need to keep response size manageable: include_summary for the AI-generated overview; include_action_items for extracted tasks; include_transcript for the full word-for-word transcript with speaker attribution (can be large); include_key_questions for AI-flagged discussion questions; include_topics for identified subject areas; include_metrics for speaker engagement data (talk time, interruptions); include_recording_download for a presigned URL to download the meeting recording. See the documentation
  • Action
  • Read only
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Read AI account once, then configure and run Get 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: "read_ai-get-meeting",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    read_ai: { authProvisionId: "apn_xxxxxxx" },
    meetingId: "Meeting ID",
    includeSummary: 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.

Get Meeting inputs
Property Type Description
meetingId Meeting ID string
The ULID of the meeting. Use List Meetings to find a meeting ID.
Required
includeSummary Include Summary boolean
Include the AI-generated meeting summary and chapter summaries.
Optional
includeActionItems Include Action Items boolean
Include extracted action items with implied owners.
Optional
includeTranscript Include Transcript boolean
Include the full word-for-word transcript with speaker attribution. Can be very large for long meetings.
Optional
includeKeyQuestions Include Key Questions boolean
Include key questions flagged by AI during the meeting.
Optional
includeTopics Include Topics boolean
Include identified discussion topics and subject areas.
Optional
includeMetrics Include Metrics boolean
Include speaker engagement metrics: talk time, interruptions, engagement scores.
Optional
includeRecordingDownload Include Recording Download URL boolean
Include a presigned URL to download the meeting recording.
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
read_ai-get-meeting
Version
0.0.2
App
Read AI
Authentication
OAuth
Read-only
Yes
Destructive
No
Open world
Yes