brainstorm-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., "@brainstorm-mcpshow me my notes"
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.
Brainstorm Board MCP server
Connects Claude (Desktop, Code, or any MCP client) to a Brainstorm Board workspace through its versioned machine API (/api/v1).
Sign-in is SSO, not keys. The first tool call starts an OAuth device flow (RFC 8628): Claude shows you a URL and a short code, you approve in a browser where you are already signed in, and a workspace-scoped token is delivered back automatically. Nothing is typed, pasted, or stored in any config file.
Setup
Claude Desktop
Add to claude_desktop_config.json (Settings → Developer → Edit Config), then restart Claude Desktop from the system tray:
{
"mcpServers": {
"brainstorm": {
"command": "npx",
"args": ["-y", "@cintelisai/brainstorm-mcp@latest"]
}
}
}On Windows, if npx fails to launch, use "command": "cmd", "args": ["/c", "npx", "-y", "@cintelisai/brainstorm-mcp@latest"].
Claude Code
claude mcp add brainstorm -- npx -y @cintelisai/brainstorm-mcp@latestRelated MCP server: silverbullet-mcp-server
Connecting
In any chat: "connect to brainstorm". Claude will call brainstorm_connect and give you a URL and code.
Switch to the workspace this connection should access first — in the Brainstorm app, make it your active workspace. The token is bound to whichever workspace is active when you approve, and that cannot be changed afterwards without reconnecting.
Open the URL, check the code matches, and approve. Approval requires a workspace admin on a Premium workspace.
Tell Claude you've approved; it calls
brainstorm_finish_connectand you're connected.
Tools
Tool | What it does |
| Start the SSO device flow |
| Collect the token after you approve |
| Show connection state and workspace |
| List notes and folders (titles and ids, not content) |
| Read one note's full markdown content by id |
| Fetch an attachment by name — images display inline; |
| Create a markdown note; |
| Delete the stored token from this machine |
Reading requires the Brainstorm Board deployment to include the /api/v1/notes/[id] and /api/v1/assets/[name] routes (August 2026 or later); older deployments answer 404 and the tools say so.
Configuration
Env var | Default | Purpose |
|
| The Brainstorm Board instance to talk to |
Set it in the MCP config entry to target another deployment:
"brainstorm": {
"command": "npx",
"args": ["-y", "@cintelisai/brainstorm-mcp@latest"],
"env": { "BRAINSTORM_URL": "https://your-instance.example.com" }
}Security notes
The token is cached in one file per host in your home directory (
~/.brainstorm-mcp-<host>.json, mode 0600). It never appears in any config file or chat.Tokens are per-machine and individually revocable: each shows up under Account → API tokens in the app, and
brainstorm_disconnectdeletes the local copy.The API refuses plaintext writes into vault (end-to-end encrypted) workspaces by design — this server can only work with standard workspaces.
The API is a Premium feature; a lapsed subscription stops tokens working immediately.
License
MIT © Cintelis Pty Limited
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.
Related MCP Servers
- Alicense-qualityDmaintenanceBridges your claude.ai authorized connectors (Slack, Atlassian, Gmail, Google Calendar) to any MCP client, enabling use of those tools without credential setup.2MIT
- Alicense-qualityAmaintenanceExposes a SilverBullet note space to Claude via MCP, with OAuth 2.1, collision-safe writes, and structured errors.MIT
- Flicense-qualityDmaintenanceEnables interaction with Google Sheets, Docs, Slides, and Drive through a remote MCP server hosted on Cloudflare Workers, with OAuth authentication and Claude-native connect.
- Alicense-qualityCmaintenanceEnables Claude to read, write, and search markdown notes stored in a private git repo via an MCP server integrated with Silverbullet editor.MIT
Related MCP Connectors
Search, read, and write your Apple Notes from ChatGPT/Claude via a local Mac agent + MCP relay.
Connect Claude to Fathom meeting recordings, transcripts, and summaries
Connect your team's living knowledge base — docs, data, issues, CRM — to Claude and ChatGPT.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/cintelis/brainstorm-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server