Overboard Studio MCP Server
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., "@Overboard Studio MCP ServerCreate a whiteboard with sticky notes for today's standup"
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.
Overboard Studio — MCP Server
Overboard Studio is a collaborative whiteboard. This is the official Model Context Protocol (MCP) server: it lets any AI agent (Claude, ChatGPT, Cursor, Codex, …) create and manage real, shareable boards — sticky notes, shapes, text, frames, charts, flowcharts, tables, connectors — that show up live in the Overboard web app.
Hosted endpoint (recommended): https://overboard.studio/mcp (OAuth, supports Claude.ai, ChatGPT, Cursor, etc.)
Stdio mode: for Claude Code / Cursor / Claude Desktop running locally.
Quick connect
Claude.ai (web)
Settings → Connectors → Add custom connector → URL: https://overboard.studio/mcp → complete the OAuth flow.
Claude Code
claude mcp add --transport http overboard https://overboard.studio/mcp
/mcp authClaude Desktop (stdio)
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"overboard": {
"command": "npx",
"args": ["-y", "@overboard/mcp-server"],
"env": {
"SUPABASE_URL": "https://your-project.supabase.co",
"SUPABASE_SERVICE_ROLE_KEY": "your-service-role-key"
}
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"overboard": {
"url": "https://overboard.studio/mcp"
}
}
}Related MCP server: Overboard Studio
Tools (16)
Boards
Tool | Description | Annotation |
| Authenticated user's id, email, display name | read-only |
| Boards you own or were invited to | read-only |
| Board metadata + member/element counts | read-only |
| New empty board, you become owner | write |
| New board pre-populated with elements (preferred) | write |
| Rename a board you own | write, idempotent |
| Cascade-delete board, members, elements | destructive |
| Direct URL to open board in the web app | read-only |
Elements
Tool | Description | Annotation |
| All elements on a board | read-only |
| Add sticky note / shape / text / frame / chart / etc. | write |
| Batch create (preferred for >2 elements) | write |
| Merge properties — move/resize/recolor/edit text | write, idempotent |
| Remove a single element | destructive |
Collaboration
Tool | Description | Annotation |
| Members of a board with roles | read-only |
| Recent element changes (default last 24h) | read-only |
| Generate a shareable invitation link | write |
Element types
sticky-note, text, path, shape, connector, frame, graph, chart, flowchart, table, timeline, kanban, doc, vote, timer, estimation
Smart defaults are applied for position, size, and styling — you only need to specify what you want to customize.
Authentication
The hosted endpoint uses OAuth 2.0. The client (Claude.ai, etc.) walks the user through Overboard's auth flow once; tokens are valid for 30 days.
Stdio mode uses the Supabase service-role key — pass it as an env var. Each tool call enforces per-user board access via Supabase Row-Level Security; the service-role key only bypasses RLS for the tools that need to read/write multi-user state.
Build from source
npm install
npm run build
node dist/index.jsFor HTTP mode:
node dist/index.js --http --port=3002Test with MCP Inspector
SUPABASE_URL=... SUPABASE_SERVICE_ROLE_KEY=... \
npx @modelcontextprotocol/inspector node dist/index.jsExample prompts
Once connected, try:
"List all my boards"
"Create a sprint planning board with 5 yellow sticky notes for: Design login, Set up API, Write tests, Deploy staging, Code review"
"Show me everything on board {id}"
"Move the first sticky note to (500, 300) and recolor it green"
"Generate an invite link for board {id} as editor"
License
MIT
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
- Flicense-qualityDmaintenanceEnables MCP-compatible LLMs to interact with Miro whiteboards to manage boards, create and manipulate shapes, and organize content through grouping tools.Last updated
- Alicense-qualityDmaintenanceCreate visual whiteboards, diagrams, flowcharts, and project plans from AI conversations. 17 MCP tools for board management, element creation, and real-time collaboration.Last updated1MIT
- Flicense-qualityDmaintenanceEnables AI agents to programmatically interact with a Miro board through the Miro API, supporting operations like creating items, updating positions, and managing connectors.Last updated15
- AlicenseAqualityBmaintenanceEnables AI agents to create and manage Convyy boards, including diagrams, kanban boards, journey maps, and more, through MCP tools like convyy_run_prompt.Last updated5MIT
Related MCP Connectors
Real-time collaborative whiteboard — AI agents and humans edit the same board live over MCP.
Persistent docs and memory for AI agents — read, write, organize & search a shared workspace.
Create and manage AI agents that collaborate and solve problems through natural language interacti…
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/alona-iaig/overboard-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server