join
Connect to a specified channel in Figma via Conduit MCP server to enable real-time communication and collaboration. Input a channel name to initiate the join process.
Instructions
Join a specific channel to communicate with Figma.
Returns:
content: Array of objects. Each object contains a type: "text" and a text field with the join status message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes | The name of the channel to join. Must be a non-empty string. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channel": {
"description": "The name of the channel to join. Must be a non-empty string.",
"minLength": 1,
"type": "string"
}
},
"required": [
"channel"
],
"type": "object"
}