brainstorm-mcp
Click on "Deploy 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: Google Workspace MCP
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 deployed
Maintenance
Related MCP Connectors
- platform7nOAuthtech.p7n
Connect Claude to your Platform7n workspaces — chat, links, and tasks. One-click OAuth.
- TaprootOAuthcom.taproothq
Persistent memory layer for AI tools. Save and recall notes across Claude and other MCP clients.
Connect AI agents to Filepad workspaces through OAuth MCP.
One workspace of tools for Claude and ChatGPT: connect 600+ apps, generate media, build tools.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceExposes a SilverBullet note space to Claude via MCP, with OAuth 2.1, collision-safe writes, and structured errors.MIT
- FlicenseNot gradedqualityDmaintenanceEnables interaction with Google Sheets, Docs, Slides, and Drive through a remote MCP server hosted on Cloudflare Workers, with OAuth authentication and Claude-native connect.-
- AlicenseNot gradedqualityCmaintenanceEnables Claude to read, write, and search markdown notes stored in a private git repo via an MCP server integrated with Silverbullet editor.MIT
- FlicenseNot gradedqualityDmaintenanceConnects Claude Desktop to Evernote, enabling you to list notebooks/notes and create new notes directly from conversations.-