Skip to main content
Glama

siigo_get_price_lists

Retrieve the complete catalog of price lists from Siigo accounting software to access current pricing information for products and services.

Instructions

Get price lists catalog

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • MCP tool handler for 'siigo_get_price_lists'. Calls SiigoClient.getPriceLists() and formats the response as MCP content.
    private async handleGetPriceLists(args: any) { const result = await this.siigoClient.getPriceLists(); return { content: [{ type: 'text', text: JSON.stringify(result, null, 2) }] }; }
  • Core implementation in SiigoClient that makes the API request to fetch price lists from Siigo API.
    async getPriceLists(): Promise<SiigoApiResponse<any>> { return this.makeRequest<any>('GET', '/v1/price-lists'); }
  • src/index.ts:707-711 (registration)
    Tool registration in getTools() method, including name, description, and input schema.
    { name: 'siigo_get_price_lists', description: 'Get price lists catalog', inputSchema: { type: 'object', properties: {} }, },
  • Input schema definition for the tool (no required parameters).
    description: 'Get price lists catalog', inputSchema: { type: 'object', properties: {} },

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/jdlar1/siigo-mcp'

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