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
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- packages/mcp/src/tools/read.ts:291-303 (handler)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); } }, );