send_message
Send encrypted messages securely to any XMTP-enabled wallet address or ENS name using this tool. Facilitates direct communication via the XMTP decentralized messaging network.
Instructions
Send a message to an address via XMTP
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | Message content to send | |
recipient | Yes | Wallet address or ENS name to send message to |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "Message content to send",
"type": "string"
},
"recipient": {
"description": "Wallet address or ENS name to send message to",
"type": "string"
}
},
"required": [
"recipient",
"message"
],
"type": "object"
}