/fireflies | Type: Application | PCID required: Yes
Application MCP Servers
fireflies
Meeting transcription
Server path:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Meeting transcription
/fireflies | Type: Application | PCID required: Yes
| Tool | Description |
|---|---|
fireflies_get_ai_apps | Retrieve AI App outputs for meetings with optional filtering |
fireflies_get_transcript_text | 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. |
fireflies_get_user_details | Retrieve detailed information about a specific user or the API key owner |
fireflies_get_user_groups | Retrieve information about user groups within the team |
fireflies_get_users | Retrieve information about users in your organization |
fireflies_list_meetings | List meetings with basic info and transcript URLs. Use the returned meeting IDs with fireflies_get_transcript_text to get the actual transcript content. |
| 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"
]
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
transcript_id | string | Yes | — | Transcript ID to retrieve details for |
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "PinkConnect ID"
},
"transcript_id": {
"type": "string",
"description": "Transcript ID to retrieve details for"
}
},
"required": [
"PCID",
"transcript_id"
]
}
| 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"
]
}
| 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"
]
}
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "PinkConnect ID"
}
},
"required": [
"PCID"
]
}
| 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"
]
}
