M
MCP Server Brainflow Docs
BrainFlow MCP server documentation and setup guide
Created 5/13/2026
Updated about 3 hours ago
README
Repository documentation and setup instructions
BrainFlow MCP Server
Connect Claude Desktop, Cursor, and GitHub Copilot to your BrainFlow team memory.
What this does
This MCP server lets AI assistants query your company's shared email memory via natural language. The assistant sends a question, the server translates it to SQL, runs it against your BrainFlow database, and returns a sourced answer.
Works with: BrainFlow accounts only. Sign up to get started.
Setup
1. Generate an API key
In your BrainFlow dashboard:
- Go to API Keys
- Click Generate key
- Name it (e.g. "Claude Desktop")
- Copy the key — you will only see it once
2. Connect to Claude Desktop
In Claude Desktop, go to Settings → MCP Servers → Add Custom Server.
- Name:
BrainFlow - URL:
https://brain-flow.ai/mcp/sse?api_key=bf_mcp_YOUR_KEY_HERE
Replace YOUR_KEY_HERE with your actual API key.
Restart Claude. Start asking questions.
Security
- Read-only. The server cannot write, delete, or modify anything. It only runs
SELECTqueries. - API keys required. Every request must include a valid key. Keys are managed in your BrainFlow dashboard.
- Company data secured. Your data stays in your database. No external APIs are called.
- Audit trail. Each key records when it was last used.
For security issues, email security@brain-flow.ai.
Quick Setup
Installation guide for this server
Installation Command (package not published)
git clone https://github.com/yacine-cherif/mcp-server-brainflow-docs
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.
Cursor configuration (mcp.json)
{
"mcpServers": {
"yacine-cherif-mcp-server-brainflow-docs": {
"command": "git",
"args": [
"clone",
"https://github.com/yacine-cherif/mcp-server-brainflow-docs"
]
}
}
}