List meetings with basic info and transcript URLs. Use the returned meeting IDs with fireflies_get_transcript_text to get the actual transcript content.
Get the actual transcript text content with sentences, speakers, timestamps, summary, and analytics. This extracts the full meeting conversation broken down by speaker and time.
Retrieve detailed information about a specific user or the API key ownerParameters:
Parameter
Type
Required
Default
Description
userId
string
No
—
User ID to get details for. If not provided, returns details for the API key owner
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "PinkConnect ID" }, "userId": { "type": "string", "description": "User ID to get details for. If not provided, returns details for the API key owner" } }, "required": [ "PCID" ]}
Retrieve information about user groups within the teamParameters:
Parameter
Type
Required
Default
Description
mine
boolean
No
—
If true, returns only user groups that the current user belongs to. If false or not provided, returns all user groups in the team
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "PinkConnect ID" }, "mine": { "type": "boolean", "description": "If true, returns only user groups that the current user belongs to. If false or not provided, returns all user groups in the team" } }, "required": [ "PCID" ]}
List meetings with basic info and transcript URLs. Use the returned meeting IDs with fireflies_get_transcript_text to get the actual transcript content.Parameters:
Parameter
Type
Required
Default
Description
limit
number
No
—
Number of transcripts to retrieve (max 50)
skip
number
No
—
Number of transcripts to skip for pagination
userId
string
No
—
User ID to filter transcripts by
fromDate
string
No
—
Return transcripts created after this date (ISO 8601 format)
toDate
string
No
—
Return transcripts created before this date (ISO 8601 format)
keyword
string
No
—
Search for keywords in meeting title or content
mine
boolean
No
—
Filter meetings where API key owner is organizer
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "PinkConnect ID" }, "limit": { "type": "number", "description": "Number of transcripts to retrieve (max 50)" }, "skip": { "type": "number", "description": "Number of transcripts to skip for pagination" }, "userId": { "type": "string", "description": "User ID to filter transcripts by" }, "fromDate": { "type": "string", "description": "Return transcripts created after this date (ISO 8601 format)" }, "toDate": { "type": "string", "description": "Return transcripts created before this date (ISO 8601 format)" }, "keyword": { "type": "string", "description": "Search for keywords in meeting title or content" }, "mine": { "type": "boolean", "description": "Filter meetings where API key owner is organizer" } }, "required": [ "PCID" ]}
Get the actual transcript text content with sentences, speakers, timestamps, summary, and analytics. This extracts the full meeting conversation broken down by speaker and time.Parameters:
Retrieve AI App outputs for meetings with optional filteringParameters:
Parameter
Type
Required
Default
Description
appId
string
No
—
App ID to filter outputs by specific AI App
transcriptId
string
No
—
Transcript ID to filter outputs by specific meeting
skip
number
No
—
Number of records to skip for pagination
limit
number
No
—
Maximum number of outputs to fetch (max 10)
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "PinkConnect ID" }, "appId": { "type": "string", "description": "App ID to filter outputs by specific AI App" }, "transcriptId": { "type": "string", "description": "Transcript ID to filter outputs by specific meeting" }, "skip": { "type": "number", "description": "Number of records to skip for pagination" }, "limit": { "type": "number", "description": "Maximum number of outputs to fetch (max 10)" } }, "required": [ "PCID" ]}