Colombian accounting with DIAN electronic invoicing. Your agent creates facturas electronicas, manages taxes, and stays DIAN-compliant.
Siigo gives your agent 22 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
create_invoice β Create an invoice (DIAN electronic invoice)get_invoice β Get invoice details by IDlist_invoices β List invoices// Your agent calls a tool directly β no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("create_invoice", { /* ... */ });$ npm install @codespar/mcp-siigoAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"siigo": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-siigo"
],
"env": {
"SIIGO_API_KEY": "<your_siigo_api_key>",
"SIIGO_ACCESS_TOKEN": "<your_siigo_access_token>"
}
}
}
}After restart, your agent can call any of the 22 tools below β try create_invoice first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
SIIGO_API_KEYAPI key for Siigo
SIIGO_ACCESS_TOKENBearer access token
Each tool is independent β your agent loads only what it needs to reduce context and response time.
create_invoiceget_invoicelist_invoicescreate_credit_notelist_customerscreate_customerlist_productscreate_productMCP is a protocol β any framework that speaks it can mount this server.