Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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);
        }
      },
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mission69b/t2000'

If you have feedback or need assistance with the MCP directory API, please join our Discord server