View as Markdown
Stormboard icon

Stormboard ACTION

New Storm

Creates a new storm. See the docs here
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Stormboard account once, then configure and run New Storm from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "stormboard-new-storm",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    stormboard: { authProvisionId: "apn_xxxxxxx" },
    plan: "Plan",
    title: "Title",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

New Storm inputs
Property Type Description
plan Plan string
The type of plan to create this Storm under.
Required
title Title string
The title of the Storm.
Required
description Description string
The description of the Storm.
Optional
votesPerUser Votes Per User integer
The number of votes each user gets. Between 0 and 100. Defaults to 10.
Optional
avatars Avatars boolean
Show where each user is in realtime on the Storm wall with an avatar and name.
Optional
ideaCreator Idea Creator boolean
Show the idea creator's avatar on the corner of the idea
Optional
teamId Team ID string
The team's unique id. Required if the 'plan' parameter is set to 'team'. You must also be a Storm Administrator on this team to be able to create Storms.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
stormboard-new-storm
Version
0.0.2
App
Stormboard
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes