Skip to main content
Glama
VautlixDevelopment

Vaultix MCP Server

vaultix_delete_customer

Remove customer records from the Vaultix payment system by specifying the customer ID to delete.

Instructions

Delete a customer

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesCustomer ID to delete

Implementation Reference

  • The handler logic within the handleToolCall switch statement that deletes a customer by calling the VaultixClient's delete method on the `/customers/{id}` endpoint.
    case 'vaultix_delete_customer':
      return client.delete(`/customers/${args.id}`)
  • The input schema defining the required 'id' parameter as a string for the customer ID.
    inputSchema: {
      type: 'object',
      properties: {
        id: { type: 'string', description: 'Customer ID to delete' },
      },
      required: ['id'],
    },
  • The tool registration object added to the exported 'tools' array, including name, description, and schema.
    {
      name: 'vaultix_delete_customer',
      description: 'Delete a customer',
      inputSchema: {
        type: 'object',
        properties: {
          id: { type: 'string', description: 'Customer ID to delete' },
        },
        required: ['id'],
      },
    },

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/VautlixDevelopment/mcpVaultix'

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