Flow Relay MCP Server
Enables AI assistants to manage Flow Relay projects, generate handoffs and insights, and interact with integrations like Discord through natural language.
README
Flow Relay MCP Server
Flow Relay MCP Server adds project-aware, multi-tenant Flow Relay tools to MCP clients such as Claude Desktop and Claude Code.
It connects to Flow Relay API v1 using an API key and supports:
- Project scope (personal project or organization project). Every handoff and AI insight is tied to a project. Events and integrations remain user-level.
Package
- Name: @flowrelay/mcp-server
- Version: 1.0.14
What Is Included
The server currently exposes these tools:
- get_workspace_context
- list_projects
- set_active_project
- list_filter_options (lists the selectable resources, branches, event types and priorities per source for a project – call this before generating so handoff/insight filters use real values instead of guesses; also reports whether Figma is selectable, since Figma requires the project's processing region to be Global)
- list_handoffs (returns project-specific handoffs, or an aggregated view of all accessible project handoffs if no project is active; filter by status: active, archived, or all)
- ask_project (ask a question about a project and get an answer grounded in codebase, baselines and 14 days of activity; 2 credits per question)
- generate_handoff (processed asynchronously, and the server automatically polls until the job finishes. Requires active project or project_id. Accepts per-source filters: projects, eventTypes, branches, priorities.)
- generate_correlation_insight (accepts per-source filters)
- generate_onboarding_brief (accepts per-source filters)
- generate_architecture_insight (accepts per-source filters)
- generate_release_notes (generates release notes or PR descriptions from code activity; accepts per-source filters)
- list_digests (lists past scheduled activity digests for a project)
- list_insights
- list_integrations
- list_events
- list_untracked_resources (lists event-producing resources not scoped to any project – useful for discovering untracked activity)
- discord_list_channels
- discord_send_message (plain text, or a handoff/insight by id or
last_*–last_handoff,last_correlation,last_onboarding,last_architecture,last_release_notes– rendered to Markdown and attached as a.mdfile)
Environment Variables
Required:
- FLOWRELAY_API_KEY
Optional:
- FLOWRELAY_PROJECT_ID
- FLOWRELAY_BASE_URL
If FLOWRELAY_PROJECT_ID is set, it becomes the default project context for project-aware tools unless you override it per call.
Quick Start (Claude Desktop)
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"flowrelay": {
"command": "npx",
"args": ["-y", "@flowrelay/mcp-server"],
"env": {
"FLOWRELAY_API_KEY": "fr_your_api_key_here",
"FLOWRELAY_PROJECT_ID": "your_project_id"
}
}
}
}
Multi-Tenant Behavior
- Every handoff and insight is tied to a project; you need an active project (
set_active_project) orproject_id. Events and integrations remain user-level. - You can select a project during the MCP session with set_active_project.
- You can override scope per call by passing project_id where supported.
Recommended flow:
- Call get_workspace_context
- Call list_projects
- Call set_active_project
- Run handoff and query tools in the selected scope
Local Development
From this folder:
npm install
npm run build
Create a tarball package:
npm pack
Troubleshooting
- Error: Missing FLOWRELAY_API_KEY
- Set FLOWRELAY_API_KEY in your MCP client configuration.
- Project not found or inaccessible
- Run list_projects and use one of the returned IDs.
- No events or handoffs returned
- Verify active scope and data availability in that scope.
Related Docs
- Documentation & Platform: https://www.flowrelay.it
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.