Fireflies
БесплатноНе проверенMCP server and CLI for Fireflies.ai API to retrieve transcripts, search meetings, and generate summaries.
Описание
MCP server and CLI for Fireflies.ai API to retrieve transcripts, search meetings, and generate summaries.
README
MCP server and CLI for the Fireflies.ai API. Retrieve transcripts, search meetings, and generate summaries.
Forked from Props-Labs/fireflies-mcp.
Quick Start
# Install globally
npm install -g fireflies-mcp
# or
bun install -g fireflies-mcp
# Set your API key
export FIREFLIES_API_KEY=your_key
# Use the CLI
fireflies-mcp transcripts --limit 5
fireflies-mcp search "standup" --json
fireflies-mcp details <transcript-id>
fireflies-mcp summary <transcript-id>
Commands
fireflies-mcp Start MCP server (stdio, default)
fireflies-mcp serve Start MCP server (stdio, explicit)
fireflies-mcp serve --http [--port 3000] Start MCP HTTP server
fireflies-mcp transcripts [options] List recent transcripts
fireflies-mcp details <id> [options] Get transcript details
fireflies-mcp search <query> [options] Search transcripts by title
fireflies-mcp summary <id> [options] Generate transcript summary
fireflies-mcp --help Show help
fireflies-mcp --version Show version
CLI Options
| Option | Applies to | Description |
|---|---|---|
--json |
all CLI commands | Output raw JSON instead of formatted text |
--limit <n> |
transcripts, search | Maximum results (default: 20) |
--from <date> |
transcripts, search | Start date filter (YYYY-MM-DD) |
--to <date> |
transcripts, search | End date filter (YYYY-MM-DD) |
--format <fmt> |
summary | bullet_points (default) or paragraph |
MCP Tools
When running as an MCP server, exposes these tools:
fireflies_get_transcripts— List transcripts with optional date/limit filtersfireflies_get_transcript_details— Full transcript with speakers, text, and summaryfireflies_search_transcripts— Search by title keywordfireflies_generate_summary— Summary in bullet points or paragraph format
Installation
Option 1: npx (no install)
npx fireflies-mcp transcripts --limit 5
Option 2: Global install
npm install -g fireflies-mcp
# or
bun install -g github:evans-sam/fireflies-mcp
Option 3: From source
git clone https://github.com/evans-sam/fireflies-mcp.git
cd fireflies-mcp
bun install
MCP Server Configuration
Claude Code (~/.claude.json)
Via npx (Node.js):
{
"mcpServers": {
"fireflies": {
"command": "npx",
"args": ["fireflies-mcp"],
"env": { "FIREFLIES_API_KEY": "<YOUR_API_KEY>" }
}
}
}
Via Bun (from source):
{
"mcpServers": {
"fireflies": {
"command": "bun",
"args": ["run", "/absolute/path/to/fireflies-mcp/src/main.ts"],
"env": { "FIREFLIES_API_KEY": "<YOUR_API_KEY>" }
}
}
}
Via Docker (HTTP):
{
"mcpServers": {
"fireflies": {
"type": "http",
"url": "http://localhost:3000/mcp"
}
}
}
Claude Desktop
Same JSON structure — add to claude_desktop_config.json.
Docker
# docker-compose (recommended)
FIREFLIES_API_KEY=your_key docker compose up -d
# or directly
docker build -t fireflies-mcp .
docker run -d -p 127.0.0.1:3000:3000 -e FIREFLIES_API_KEY=your_key --restart unless-stopped fireflies-mcp
# verify
curl http://localhost:3000/health
Setup
Fireflies API Key
Get your key at fireflies.ai/dashboard/settings/api.
Development
bun install # Install deps
bun run start # Start MCP server (stdio)
bun test # Run tests
bun run lint # Lint
bun run format # Format (auto-fix)
bun run build # Build for Node.js
Publishing
Publishing is automated via GitHub Actions. To release:
# Bump version in package.json, then:
git tag v0.2.0
git push origin v0.2.0
This triggers CI → test → build → npm publish → GitHub release.
Requires NPM_TOKEN secret in the repository settings.
Environment Variables
| Variable | Required | Default | Description |
|---|---|---|---|
FIREFLIES_API_KEY |
Yes | — | Your Fireflies.ai API key |
License
MIT. See Props-Labs/fireflies-mcp for the original.
Установка Fireflies
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/evans-sam/fireflies-mcpFAQ
Fireflies MCP бесплатный?
Да, Fireflies MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Fireflies?
Нет, Fireflies работает без API-ключей и переменных окружения.
Fireflies — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Fireflies в Claude Desktop, Claude Code или Cursor?
Открой Fireflies на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Fireflies with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
