Skip to main content
Glama

vaultix_list_products

Retrieve product listings from Vaultix Payment API with filtering options for status, search terms, and result limits.

Instructions

List all products

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum results (1-100)
statusNoFilter by status
searchNoSearch by name or SKU

Implementation Reference

  • Handler for vaultix_list_products tool that retrieves the list of products from the Vaultix API using the client.get method with optional query parameters for limit, status, and search.
    case 'vaultix_list_products': return client.get('/products', { limit: args.limit, status: args.status, search: args.search, })
  • Input schema defining the parameters for listing products: optional limit, status filter, and search term.
    inputSchema: { type: 'object', properties: { limit: { type: 'number', description: 'Maximum results (1-100)' }, status: { type: 'string', enum: ['active', 'draft', 'archived'], description: 'Filter by status' }, search: { type: 'string', description: 'Search by name or SKU' }, }, },
  • Registration of the vaultix_list_products tool in the exported tools array, specifying name, description, and input schema.
    { name: 'vaultix_list_products', description: 'List all products', inputSchema: { type: 'object', properties: { limit: { type: 'number', description: 'Maximum results (1-100)' }, status: { type: 'string', enum: ['active', 'draft', 'archived'], description: 'Filter by status' }, search: { type: 'string', description: 'Search by name or SKU' }, }, }, },

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