Skip to main content
Glama
Doist

Twist AI MCP Server

Official
by Doist

create-thread

Create a new thread in a channel by supplying channel ID, title, and content, and optionally notify specific users or groups.

Instructions

Create a new thread in a workspace channel. Requires a channel ID, title, and content. Optionally notify specific users or groups.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesThe title of the thread.
groupsNoOptional array of group IDs to notify. Use get-groups to discover group IDs before passing them here.
contentYesThe content/body of the thread.
channelIdYesThe ID of the channel to create the thread in.
recipientsNoOptional array of user IDs to notify. If omitted, Twist defaults to notifying all current members of the channel (equivalent to the API's "EVERYONE" default). Note: workspace users who have not joined this channel will not be notified — add their IDs explicitly if you want to reach them.
displayInInboxNoIf true, unarchives the thread after creation so it appears in the author's Inbox. Defaults to false. Can also be enabled for all calls by setting the TWIST_CREATE_THREAD_DISPLAY_IN_INBOX=true environment variable (local MCP only).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYes
titleYes
groupsNo
contentYes
createdYes
creatorYes
successYes
threadIdYes
channelIdYes
threadUrlYes
recipientsNo
workspaceIdYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed2 schema fields changedv7.0.0
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • changedOutput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  2. First observedv5.5.1

TDQS

B3.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already signal this is not read-only, not idempotent, and not destructive. The description adds the side-effect notion that it can optionally notify users or groups, but does not disclose the default notify-everyone behavior when recipients is omitted or the displayInInbox unarchive behavior. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short sentences with the core purpose front-loaded. No filler, though 'Requires a channel ID, title, and content' is partly redundant with the schema's required list. It remains easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a creation tool with a rich parameter schema and an output schema, the description plus structured fields is sufficient for an agent to invoke it. It could be more complete about notification defaults and inbox behavior, but those are covered in the parameter schema, and return values are handled by the output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the structured parameter descriptions already do the heavy lifting. The tool description largely restates required fields and optional notification rather than adding meaning beyond channelId, title, content, recipients, groups, or displayInInbox.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description uses a clear verb and resource: 'Create a new thread in a workspace channel.' It names the primary required inputs, so an agent knows what object this tool acts on. It does not explicitly contrast with the sibling create-conversation, so it stops short of full sibling differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No when-to-use guidance versus alternatives such as create-conversation or reply. The statement of required fields helps invocation but does not tell the agent when this tool is the correct choice or when it should choose another sibling.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Latest Blog Posts

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/Doist/twist-ai'

If you have feedback or need assistance with the MCP directory API, please join our Discord server