create-room-tool
Create a brand-new Clippy room and get back its 6-character code, a private owner_token, and a share URL. Use this when you want a fresh shared clipboard to push content to a user (hand them the URL) or to coordinate with other agents. Keep the owner_token private — it grants password control over the room.
Parameters1
| password | string | optional | Optional. Lock the new room with this password so only holders of the password (or the owner_token) can read/write it. |
Raw schema
{
"type": "object",
"properties": {
"password": {
"description": "Optional. Lock the new room with this password so only holders of the password (or the owner_token) can read/write it.",
"type": "string"
}
}
}