t2000_address
Retrieve the Sui wallet address for an AI agent to receive funds, enabling autonomous financial transactions within the t2000 banking system.
Instructions
Get the agent's Sui wallet address for receiving funds.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- packages/mcp/src/tools/read.ts:70-80 (handler)The handler for the t2000_address tool which retrieves the agent's Sui address.
server.tool( 't2000_address', "Get the agent's Sui wallet address for receiving funds.", {}, async () => { try { const address = agent.address(); return { content: [{ type: 'text', text: JSON.stringify({ address }) }] }; } catch (err) { return errorResult(err); }