M
MCP Server Brainflow Docs
BrainFlow MCP server documentation and setup guide
创建于 5/13/2026
更新于 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.
快速设置
此服务器的安装指南
安装命令 (包未发布)
git clone https://github.com/yacine-cherif/mcp-server-brainflow-docs
手动安装: 请查看 README 获取详细的设置说明和所需的其他依赖项。
Cursor 配置 (mcp.json)
{
"mcpServers": {
"yacine-cherif-mcp-server-brainflow-docs": {
"command": "git",
"args": [
"clone",
"https://github.com/yacine-cherif/mcp-server-brainflow-docs"
]
}
}
}