Siigo MCP Server
Unofficial MCP server for Siigo Colombian electronic invoicing software that enables AI to manage customers, products, invoices, credit notes, and journals through the Siigo API with configurable safety modes.
README
Siigo MCP Server
Unofficial MCP server for Siigo invoicing software (Colombian electronic invoicing) created by @dsfaccini.
Disclaimers: This is an independent project and is not affiliated with Siigo. The project is at early stages so extensive testing is recommended before production use. The MCP server doesn't include any custom logic beyond calling the documented Siigo API endpoints.
Security Warning: This MCP server gives AI direct access to Siigo API endpoints. By default, only read-only tools are enabled. See Safety Modes before enabling write operations.
Quick Start
{
"mcpServers": {
"siigo": {
"command": "uvx",
"args": ["siigo-mcp"],
"env": {
"SIIGO_USERNAME": "your-email@example.com",
"SIIGO_ACCESS_KEY": "your-access-key",
"SIIGO_PARTNER_ID": "your-partner-id"
}
}
}
}
Or run directly:
uvx siigo-mcp
Installation
Option 1: uvx (recommended, no install)
uvx siigo-mcp
Option 2: pip/uv install
uv tool install siigo-mcp
# or
pip install siigo-mcp
Option 3: From source
git clone https://github.com/dsfaccini/siigo-mcp.git
cd siigo-mcp
uv sync
uv run siigo-mcp
Prerequisites
- uv package manager
macOS/Linux:
curl -LsSf https://astral.sh/uv/install.sh | sh
Windows:
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
Configuration
Environment Variables
| Variable | Required | Description |
|---|---|---|
SIIGO_USERNAME |
Yes | Siigo account email |
SIIGO_ACCESS_KEY |
Yes | Siigo API access key |
SIIGO_PARTNER_ID |
Yes | Siigo partner ID |
SIIGO_MODE |
No | Tool mode: read_only (default), standard, full |
SIIGO_LAZY_TOOLS |
No | Set to true for token-optimized lazy loading |
DRY_RUN |
No | Set to true to mock write operations |
LOGFIRE_TOKEN |
No | Pydantic Logfire token for observability |
Safety Modes (SIIGO_MODE)
| Mode | Tools Available | Use Case |
|---|---|---|
read_only |
19 tools: list_*, get_* only |
Safe exploration, testing |
standard |
30 tools: Read + create/update/delete | Normal usage (no DIAN) |
full |
33 tools: All including DIAN operations | Production with caution |
Dangerous tools (only in full mode):
stamp_invoice- Sends invoice to DIAN (legally binding)annul_invoice- Cancels official documentssend_invoice_email- Sends emails to customers
Lazy Tools Mode (SIIGO_LAZY_TOOLS)
For smaller context models or cost optimization, enable lazy loading:
| Mode | Tokens | Description |
|---|---|---|
| Default | ~5,600 | All 33 tools loaded upfront |
Lazy (true) |
~300 | Only 3 discovery tools |
In lazy mode, LLM uses these meta-tools:
list_siigo_tools(category?)- Discover available toolsget_tool_schema(tool_name)- Get full parameter schemacall_siigo_tool(tool_name, params)- Execute any tool dynamically
{
"env": {
"SIIGO_LAZY_TOOLS": "true"
}
}
MCP Client Setup
Claude Desktop
Config location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"siigo": {
"command": "uvx",
"args": ["siigo-mcp"],
"env": {
"SIIGO_USERNAME": "your-email@example.com",
"SIIGO_ACCESS_KEY": "your-access-key",
"SIIGO_PARTNER_ID": "your-partner-id"
}
}
}
}
Claude Code
Add to ~/.claude.json or .mcp.json in your project:
{
"mcpServers": {
"siigo": {
"type": "stdio",
"command": "uvx",
"args": ["siigo-mcp"],
"env": {
"SIIGO_USERNAME": "${SIIGO_USERNAME}",
"SIIGO_ACCESS_KEY": "${SIIGO_ACCESS_KEY}",
"SIIGO_PARTNER_ID": "${SIIGO_PARTNER_ID}"
}
}
}
}
Cursor
Add to ~/.cursor/mcp.json or .cursor/mcp.json in your project:
{
"mcpServers": {
"siigo": {
"type": "stdio",
"command": "uvx",
"args": ["siigo-mcp"],
"env": {
"SIIGO_USERNAME": "${env:SIIGO_USERNAME}",
"SIIGO_ACCESS_KEY": "${env:SIIGO_ACCESS_KEY}",
"SIIGO_PARTNER_ID": "${env:SIIGO_PARTNER_ID}"
}
}
}
}
VS Code
Add to .vscode/mcp.json:
{
"servers": {
"siigo": {
"command": "uvx",
"args": ["siigo-mcp"],
"env": {
"SIIGO_USERNAME": "${env:SIIGO_USERNAME}",
"SIIGO_ACCESS_KEY": "${env:SIIGO_ACCESS_KEY}",
"SIIGO_PARTNER_ID": "${env:SIIGO_PARTNER_ID}"
}
}
}
}
Available Tools
Read-Only (Safe)
Reference Data:
get_taxes- Tax configurationsget_payment_types- Payment methodsget_document_types- Document types (FV, NC, etc.)get_warehouses- Warehouse locationsget_users- System usersget_account_groups- Account classifications
Customers:
list_customers- List with pagination/filtersget_customer- Get by ID
Products:
list_products- List with pagination/filtersget_product- Get by ID
Invoices:
list_invoices- List with pagination/filtersget_invoice- Get by IDget_invoice_pdf- Download PDFget_stamp_errors- DIAN rejection errors
Credit Notes:
list_credit_notes- List with pagination/filtersget_credit_note- Get by IDget_credit_note_pdf- Download PDF
Journals:
list_journals- List with pagination/filtersget_journal- Get by ID
Write Operations (standard mode)
create_customer,update_customer,delete_customercreate_product,update_product,delete_productcreate_invoice,update_invoice,delete_invoicecreate_credit_notecreate_journal
Dangerous (full mode only)
stamp_invoice- Send to DIAN for electronic stampingannul_invoice- Annul/cancel an invoicesend_invoice_email- Email invoice to customer
Development
Running Tests
# Tests that don't require credentials
uv run pytest tests/test_unit.py -v
# Tests with real credentials (read-only)
uv run pytest tests/test_reference.py -v
# All tests with dry-run mode
DRY_RUN=true uv run pytest tests/ -v
Dry-Run Mode
Set DRY_RUN=true to mock all write operations:
DRY_RUN=true uvx siigo-mcp
In dry-run mode:
- GET requests work normally (real API)
- POST/PUT/DELETE return mock responses without executing
Security Considerations
-
No human-in-the-loop at MCP layer - This server executes tool calls directly. Guardrails must be implemented in your application layer.
-
Start with read_only mode - Default mode only exposes read operations. Explicitly set
SIIGO_MODE=fullonly when you understand the risks. -
Credentials in config files - MCP configs store credentials. Use environment variable references (
${SIIGO_USERNAME}) where supported. -
Production use - Consider using
standardmode for most use cases. Only enablefullmode when DIAN operations are explicitly needed.
HTTP Mode (Railway Deployment)
For multi-tenant hosting, set MCP_TRANSPORT=http:
MCP_TRANSPORT=http PORT=8000 uvx siigo-mcp
In HTTP mode, credentials are passed per-request via headers:
X-Siigo-UsernameX-Siigo-Access-KeyX-Siigo-Partner-Id
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。