send
Enable AI assistants to communicate by sending messages between Claude instances, specifying source, target, and content, with optional structured data for enhanced interaction.
Instructions
Send a message to another Claude instance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Message content | |
data | No | Optional structured data to send | |
from_id | Yes | Your instance ID | |
to_id | Yes | Target instance ID |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Message content",
"type": "string"
},
"data": {
"description": "Optional structured data to send",
"type": "object"
},
"from_id": {
"description": "Your instance ID",
"type": "string"
},
"to_id": {
"description": "Target instance ID",
"type": "string"
}
},
"required": [
"from_id",
"to_id",
"content"
],
"type": "object"
}