MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

M
MCP Server Brainflow Docs

BrainFlow MCP server documentation and setup guide

Created 5/13/2026
Updated about 3 hours ago
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:

  1. Go to API Keys
  2. Click Generate key
  3. Name it (e.g. "Claude Desktop")
  4. 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 SELECT queries.
  • 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" ] } } }