View as Markdown
Meetstream AI icon

Meetstream AI ACTION

Create Bot

Creates a new bot instance to join a meeting. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Meetstream AI account once, then configure and run Create Bot 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: "meetstream_ai-create-bot",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    meetstream_ai: { authProvisionId: "apn_xxxxxxx" },
    meetingLink: "Meeting Link",
    botName: "Bot Name",
  },
})

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.

Create Bot inputs
Property Type Description
meetingLink Meeting Link string
The link to the meeting where the bot should join
Required
botName Bot Name string
The name of the bot
Optional
audioRequired Audio Required boolean
Whether audio is required
Optional
videoRequired Video Required boolean
Whether video is required
Optional
liveAudioRequired Live Audio Websocket URL string
Specify websocket_url for live audio streaming
Optional
liveTranscriptionRequired Live Transcription Webhook URL string
Specify webhook_url for live transcription
Optional
deepgramApiKey Deepgram API Key string
This key is required if you use a Google Meet link and Live Transcription Webhook URL is specified
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
meetstream_ai-create-bot
Version
0.0.3
App
Meetstream AI
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes