Skip to main content
Glama

t2000_contact_remove

Remove a saved contact by name from the t2000 MCP server's banking system.

Instructions

Remove a saved contact by name.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesContact name to remove

Implementation Reference

  • Registration and handler implementation for the t2000_contact_remove tool.
    server.tool(
      't2000_contact_remove',
      'Remove a saved contact by name.',
      {
        name: z.string().describe('Contact name to remove'),
      },
      async ({ name }) => {
        try {
          const removed = agent.contacts.remove(name);
          return { content: [{ type: 'text', text: JSON.stringify({ success: removed, name }) }] };
        } 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