t2000_deposit_info
Retrieve deposit instructions including wallet addresses, supported networks, and accepted assets to fund or top up your account.
Instructions
Get deposit instructions — wallet address, supported networks, accepted assets. Use when the user asks how to fund or top up their account.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- packages/mcp/src/tools/read.ts:182-194 (handler)The handler for the 't2000_deposit_info' tool is implemented within the 'registerReadTools' function in 'packages/mcp/src/tools/read.ts'. It invokes the 'agent.deposit()' method and returns the serialized result as a tool response.
server.tool( 't2000_deposit_info', 'Get deposit instructions — wallet address, supported networks, accepted assets. Use when the user asks how to fund or top up their account.', {}, async () => { try { const result = await agent.deposit(); return { content: [{ type: 'text', text: JSON.stringify(result) }] }; } catch (err) { return errorResult(err); } }, );