Stormboard MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Stormboard MCP or direct API to create sticky notes, organize boards, assign tasks, and summarize meeting ideas through natural language.

Stormboard logoStormboard
Api Key

Stormboard is an online sticky note whiteboard for brainstorming and project collaboration. It helps teams organize ideas and run more productive meetings.

41 Tools

Try Stormboard now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Stormboard
Try asking
TOOLS

Supported Tools

Every Stormboard action and event your agent gets out of the box.

Accept a Storm Invite

Tool to accept a Storm invitation and join the Storm.

Add a Favorite Star

Tool to add a favorite star to a Storm on the Dashboard.

Check Authentication

Tool to verify API key authentication validity.

Close a Storm

Tool to close an open Storm, making it read-only.

Create a Line Connector

Tool to create a line connector between two ideas.

Create a new chat message

Tool to create a new chat message in a Stormboard storm.

Create a New Storm

Tool to create a new Storm in Stormboard for interactive planning and collaboration.

Create a New Tag

Tool to create a new tag in a Storm without any data related to Ideas.

Create a New User

Tool to create a new user account in Stormboard.

Create an idea in Stormboard

Tool to create a new idea in an existing Stormboard storm.

Create Tag Data for an Idea

Tool to update tag data for an idea.

Decline a Storm Invite

Tool to decline a Storm invitation and remove it from your list.

Delete a Connector Between Ideas

Tool to delete a line connector between two ideas.

Delete a Specific Connector

Tool to delete a line connector using the connector ID.

Get Storm Details

Tool to retrieve detailed information about a specific Storm.

Duplicate a Storm

Tool to duplicate an existing Storm.

Get a list of connectors in a Storm

Tool to retrieve a list of connectors within a specific Storm.

Get a List of Ideas

Tool to retrieve all ideas from a Storm.

Get A List Of Participants

Tool to retrieve a list of all participants in a Storm.

Get A List Of Storms Invites

Tool to retrieve a list of storms that you have been invited to.

Get List of Tags in Storm

Tool to retrieve the list of tags that have been created in a Storm.

Get A List Of Your Storms

Tool to retrieve a list of storms from Stormboard.

Get Authentication Info

Tool to retrieve authentication information and API token for the authenticated user.

Get Chat Messages

Tool to retrieve a list of chat messages from a Stormboard storm.

Get Idea Data

Tool to retrieve detailed data and metadata for a specific idea.

Get Info About Your User

Tool to retrieve authenticated user profile information.

Get My Storm Access

Tool to check if the authenticated user has access to a Storm and retrieve their permission level.

Get Storm Template

Tool to retrieve template data for a Storm including all sections and subsections.

Get Tag Data For An Idea

Tool to retrieve tag data for a specific idea in Stormboard.

Get Unread Chat Messages

Tool to retrieve unread chat messages from a specific Storm.

Invite Participants to Storm

Tool to invite people to join a Storm by email.

Join a Storm

Tool to join a Storm using its ID and access key.

Mark Chat Messages as Read

Tool to mark all chat messages as read in a Storm.

Remove a Favorite Star

Tool to remove a favorite star from a Storm on the Dashboard.

Reopen a Storm

Tool to reopen a closed Storm.

Update a Line Connector

Tool to update a specific line connector between two ideas.

Update Notifications

Tool to update user notification preferences.

Update Section in Storm

Tool to update a section's title, description, and/or character in a Storm.

Update Storm Legend

Tool to update the color labels of the legend for a storm.

Update Your Profile

Tool to update your user profile information.

Verify Your Account

Tool to verify a Stormboard account using a verification code.

SETUP GUIDE

Connect Stormboard MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
Import and initialize the Composio client, then create a Tool Router session for Stormboard
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.mcp.url,
    headers: {
      'x-api-key': 'your-composio-api-key',
    },
  },
});

const tools = await client.tools();
const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{
    role: 'user',
    content: 'Summarize all sticky notes from the Design board created today'
  }],
  maxSteps: 5,
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent (Anthropic Claude or Mastra)
SETUP GUIDE

Connect Stormboard API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Stormboard Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Add a new sticky note to the Marketing board with the text "Brainstorm campaign ideas"'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Stormboard actions with your Agent

Why Use Composio?

AI Native Stormboard Integration

  • Supports both Stormboard MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Stormboard data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Stormboard access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Stormboard
  • Scoped, least privilege access to Stormboard resources
  • Full audit trail of agent actions to support review and compliance
FAQ

Frequently asked questions

Yes, Stormboard requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Stormboard.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Stormboard tool your agent needs.Free to start.

Start building