connect_xmtp
Initiate a connection to the XMTP network using a wallet private key to enable AI agents to send encrypted messages, manage conversations, and stream real-time communication across XMTP-enabled wallets. Supports local, dev, and production environments.
Instructions
Connect to XMTP network with wallet key
Input Schema
Name | Required | Description | Default |
---|---|---|---|
environment | No | XMTP environment: local, dev, or production | production |
privateKey | No | Wallet private key (optional, uses env WALLET_KEY if not provided) |
Input Schema (JSON Schema)
{
"properties": {
"environment": {
"default": "production",
"description": "XMTP environment: local, dev, or production",
"enum": [
"local",
"dev",
"production"
],
"type": "string"
},
"privateKey": {
"description": "Wallet private key (optional, uses env WALLET_KEY if not provided)",
"type": "string"
}
},
"type": "object"
}