Twist MCP Server

by mikemc

twist_threads_add

Create and manage threads in Twist channels by specifying title, content, actions, attachments, mentions, and recipients. Use to organize discussions and notify users or groups effectively.

Instructions

Adds a new thread to a channel.

Args: channel_id: The id of the channel title: The title of the new thread content: The content of the new thread actions: List of action buttons to the new thread attachments: List of attachments to the new thread direct_group_mentions: The groups that are directly mentioned direct_mentions: The users that are directly mentioned groups: The groups that will be notified recipients: An array of users that will be attached to the thread or "EVERYONE" send_as_integration: Displays the integration as the thread creator temp_id: The temporary id of the thread

Input Schema

NameRequiredDescriptionDefault
actionsNo
attachmentsNo
channel_idYes
contentYes
direct_group_mentionsNo
direct_mentionsNo
groupsNo
recipientsNo
send_as_integrationNo
temp_idNo
titleYes

Input Schema (JSON Schema)

{ "properties": { "actions": { "anyOf": [ { "items": { "additionalProperties": true, "type": "object" }, "type": "array" }, { "type": "null" } ], "default": null, "title": "Actions" }, "attachments": { "anyOf": [ { "items": { "additionalProperties": true, "type": "object" }, "type": "array" }, { "type": "null" } ], "default": null, "title": "Attachments" }, "channel_id": { "title": "Channel Id", "type": "integer" }, "content": { "title": "Content", "type": "string" }, "direct_group_mentions": { "anyOf": [ { "items": { "type": "integer" }, "type": "array" }, { "type": "null" } ], "default": null, "title": "Direct Group Mentions" }, "direct_mentions": { "anyOf": [ { "items": { "type": "integer" }, "type": "array" }, { "type": "null" } ], "default": null, "title": "Direct Mentions" }, "groups": { "anyOf": [ { "items": { "type": "integer" }, "type": "array" }, { "type": "null" } ], "default": null, "title": "Groups" }, "recipients": { "anyOf": [ { "items": { "type": "integer" }, "type": "array" }, { "type": "string" }, { "type": "null" } ], "default": null, "title": "Recipients" }, "send_as_integration": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": null, "title": "Send As Integration" }, "temp_id": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "title": "Temp Id" }, "title": { "title": "Title", "type": "string" } }, "required": [ "channel_id", "title", "content" ], "title": "twist_threads_addArguments", "type": "object" }
ID: a1cy0o9qbz