Skip to main content
Glama
VautlixDevelopment

Vaultix MCP Server

vaultix_get_transactions_summary

Retrieve a summary of payment transactions for a specified period to analyze revenue and activity trends.

Instructions

Get transaction summary for a period

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
periodNoPeriod for summary (default: 30d)

Implementation Reference

  • Handler implementation for the vaultix_get_transactions_summary tool. It retrieves the transaction summary from the Vaultix API endpoint '/transactions/summary' with the specified period or defaults to '30d'.
    case 'vaultix_get_transactions_summary':
      return client.get('/transactions/summary', { period: args.period || '30d' })
  • Tool registration in the tools array, including name, description, and input schema definition.
    {
      name: 'vaultix_get_transactions_summary',
      description: 'Get transaction summary for a period',
      inputSchema: {
        type: 'object',
        properties: {
          period: { type: 'string', enum: ['24h', '7d', '30d', '90d'], description: 'Period for summary (default: 30d)' },
        },
      },
    },
  • Input schema for the vaultix_get_transactions_summary tool, defining the 'period' parameter.
    inputSchema: {
      type: 'object',
      properties: {
        period: { type: 'string', enum: ['24h', '7d', '30d', '90d'], description: 'Period for summary (default: 30d)' },
      },
    },

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