fireflies-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@fireflies-mcplist my last 5 transcripts"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Fireflies MCP Server & CLI
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>Related MCP server: Vexa
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 versionCLI Options
Option | Applies to | Description |
| all CLI commands | Output raw JSON instead of formatted text |
| transcripts, search | Maximum results (default: 20) |
| transcripts, search | Start date filter (YYYY-MM-DD) |
| transcripts, search | End date filter (YYYY-MM-DD) |
| summary |
|
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 5Option 2: Global install
npm install -g fireflies-mcp
# or
bun install -g github:evans-sam/fireflies-mcpOption 3: From source
git clone https://github.com/evans-sam/fireflies-mcp.git
cd fireflies-mcp
bun installMCP 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/healthSetup
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.jsPublishing
Publishing is automated via GitHub Actions. To release:
# Bump version in package.json, then:
git tag v0.2.0
git push origin v0.2.0This triggers CI → test → build → npm publish → GitHub release.
Requires NPM_TOKEN secret in the repository settings.
Environment Variables
Variable | Required | Default | Description |
| Yes | — | Your Fireflies.ai API key |
License
MIT. See Props-Labs/fireflies-mcp for the original.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/evans-sam/fireflies-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server