Fireflies MCP Server

fireflies_get_transcripts

Retrieve a list of meeting transcripts with optional filtering. By default, returns up to 20 most recent transcripts with no date filtering. Note that this operation may take longer for large datasets and might timeout. If a timeout occurs, a minimal set of transcript data will be returned.

Input Schema

NameRequiredDescriptionDefault
from_dateNoStart date in ISO format (YYYY-MM-DD). If not specified, no lower date bound is applied. Using a narrower date range can help prevent timeouts.
limitNoMaximum number of transcripts to return (default: 20). Consider using a smaller limit if experiencing timeouts.
to_dateNoEnd date in ISO format (YYYY-MM-DD). If not specified, no upper date bound is applied. Using a narrower date range can help prevent timeouts.

Input Schema (JSON Schema)

{ "properties": { "from_date": { "description": "Start date in ISO format (YYYY-MM-DD). If not specified, no lower date bound is applied. Using a narrower date range can help prevent timeouts.", "type": "string" }, "limit": { "description": "Maximum number of transcripts to return (default: 20). Consider using a smaller limit if experiencing timeouts.", "type": "number" }, "to_date": { "description": "End date in ISO format (YYYY-MM-DD). If not specified, no upper date bound is applied. Using a narrower date range can help prevent timeouts.", "type": "string" } }, "type": "object" }