Skip to main content
Glama

t2000_contacts

Manage contact name-to-address mappings for AI banking transactions. Use saved contacts instead of raw addresses when sending funds.

Instructions

List saved contacts (name → address mappings). Use contact names with t2000_send instead of raw addresses. Use t2000_contact_add to save new contacts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Implementation of the 't2000_contacts' tool, which lists saved contacts by calling agent.contacts.list().
    server.tool(
      't2000_contacts',
      'List saved contacts (name → address mappings). Use contact names with t2000_send instead of raw addresses. Use t2000_contact_add to save new contacts.',
      {},
      async () => {
        try {
          const contacts = agent.contacts.list();
          return { content: [{ type: 'text', text: JSON.stringify({ contacts }) }] };
        } 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