Skip to main content
Glama

siigo_get_taxes

Retrieve the complete catalog of tax rates and types from Siigo's Colombian accounting system for accurate financial calculations and compliance.

Instructions

Get taxes catalog

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • MCP tool handler that executes the tool logic by calling SiigoClient.getTaxes() and returning the JSON-formatted response.
    private async handleGetTaxes(args: any) { const result = await this.siigoClient.getTaxes(); return { content: [{ type: 'text', text: JSON.stringify(result, null, 2) }] }; }
  • src/index.ts:677-681 (registration)
    Tool registration in getTools() method, defining name, description, and input schema.
    { name: 'siigo_get_taxes', description: 'Get taxes catalog', inputSchema: { type: 'object', properties: {} }, },
  • src/index.ts:149-150 (registration)
    Dispatch registration in the executeTool switch statement.
    case 'siigo_get_taxes': return await this.handleGetTaxes(args);
  • Supporting utility in SiigoClient that performs the actual API GET request to fetch taxes.
    async getTaxes(): Promise<SiigoApiResponse<any>> { return this.makeRequest<any>('GET', '/v1/taxes'); }
  • Input schema definition for the tool (no required parameters).
    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