Skip to main content
Glama
VautlixDevelopment

Vaultix MCP Server

vaultix_get_refund

Retrieve a specific refund by its ID to view details and status within the Vaultix payment system.

Instructions

Retrieve a refund by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesRefund ID (re_...)

Implementation Reference

  • Executes the tool logic by calling the VaultixClient to GET /refunds/{id} with the provided refund ID.
    case 'vaultix_get_refund':
      return client.get(`/refunds/${args.id}`)
  • Defines the input schema for the vaultix_get_refund tool, requiring a refund ID string.
    inputSchema: {
      type: 'object',
      properties: {
        id: { type: 'string', description: 'Refund ID (re_...)' },
      },
      required: ['id'],
    },
  • Registers the vaultix_get_refund tool in the exported tools array for MCP, including name, description, and schema.
    {
      name: 'vaultix_get_refund',
      description: 'Retrieve a refund by ID',
      inputSchema: {
        type: 'object',
        properties: {
          id: { type: 'string', description: 'Refund ID (re_...)' },
        },
        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