broadcast
Facilitates real-time message broadcasting to all connected Claude instances via the Claude IPC MCP server, enabling efficient inter-instance communication with structured data support.
Instructions
Broadcast a message to all other Claude instances
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Message content | |
data | No | Optional structured data | |
from_id | Yes | Your instance ID |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Message content",
"type": "string"
},
"data": {
"description": "Optional structured data",
"type": "object"
},
"from_id": {
"description": "Your instance ID",
"type": "string"
}
},
"required": [
"from_id",
"content"
],
"type": "object"
}