Fireflies MCP Server

fireflies_search_transcripts

Search for transcripts containing specific keywords, with optional date filtering. Returns a human-readable list of matching transcripts with metadata and summary information.

Input Schema

NameRequiredDescriptionDefault
from_dateNoStart date in ISO format (YYYY-MM-DD) to filter transcripts by date. If not specified, no lower date bound is applied.
limitNoMaximum number of transcripts to return (default: 20)
queryYesSearch query to find relevant transcripts
to_dateNoEnd date in ISO format (YYYY-MM-DD) to filter transcripts by date. If not specified, no upper date bound is applied.

Input Schema (JSON Schema)

{ "properties": { "from_date": { "description": "Start date in ISO format (YYYY-MM-DD) to filter transcripts by date. If not specified, no lower date bound is applied.", "type": "string" }, "limit": { "description": "Maximum number of transcripts to return (default: 20)", "type": "number" }, "query": { "description": "Search query to find relevant transcripts", "type": "string" }, "to_date": { "description": "End date in ISO format (YYYY-MM-DD) to filter transcripts by date. If not specified, no upper date bound is applied.", "type": "string" } }, "required": [ "query" ], "type": "object" }