Thailand e-Tax Invoices (Leceipt create, poll & download)
БесплатноНе проверенThailand Leceipt e-Tax: AI agents create, poll and download e-Tax Invoices, stateless BYO.
Описание
Thailand Leceipt e-Tax: AI agents create, poll and download e-Tax Invoices, stateless BYO.
README
Use it in 60 seconds
Paste this into your MCP client config (Claude Desktop, Cursor, Windsurf, or any MCP-capable agent):
{
"mcpServers": {
"thailand-invoice": {
"type": "http",
"url": "https://inv-th.wishpool.app/mcp"
}
}
}
Nothing to install. Credentials, when you need them, travel as HTTP headers on each request and are never stored — see the threat model.
Or run it yourself
Would you rather not send production credentials to a server you do not control? Deploy this identical code to your own account and point your agent at your own URL:
git clone https://github.com/junter1989k-ai/thailand-invoice-mcp && cd thailand-invoice-mcp && npx vercel --prod
MIT-licensed. Self-hosting removes us from the picture entirely, at no cost and with no loss of function.
Remote MCP server that lets any AI agent create Thailand e-Tax Invoices (ใบกำกับภาษี / Tax Invoice) through Leceipt, the merchant's own Revenue-Department-authorised e-Tax service provider. It computes Thai VAT 7% locally, submits the document to Leceipt, then polls the job and downloads the finished PDF/XML. Stateless, bring-your-own Leceipt API key, never stores anything.
Live endpoint: https://inv-th.wishpool.app/mcp · Registry: app.wishpool/thailand-invoice-mcp
Honest scope — what this server does and does NOT do
This wraps Leceipt's submit / job / file calls only. Signing and Revenue-Department filing happen inside your own Leceipt account.
- ✅ It does: compute the THB VAT math (percentVat
7/0/-1per line;includeVatbacks VAT out of gross prices), convert the date to the Buddhist-EradateBE, assemble the Leceipt document, forwardPOST /etax/documents/invoices-taxinvoiceswith your API key, and translate the response (job → status → file).query_jobpolls;download_documentfetches the produced file. - ❌ It does NOT: sign your invoice, hold your digital certificate (CA — TDID/INET), or act as an authentication intermediary. Your company profile and certificate live in your own Leceipt account; Leceipt signs each document and files it with the Thai Revenue Department. This server never sees the certificate.
This deliberate split keeps the security-critical material (certificate, RD credentials) entirely inside your Leceipt account — a compromise of this stateless forwarder cannot sign or file invoices.
Quick start
{
"mcpServers": {
"thailand-invoice": {
"type": "http",
"url": "https://inv-th.wishpool.app/mcp",
"headers": {
"x-leceipt-api-key": "your-leceipt-api-key",
"x-leceipt-mode": "live"
}
}
}
}
Self-register at my.leceipt.com/signup, then generate your API key in Settings → Connection to API → Generating API Key (shown only once). Required header: x-leceipt-api-key (for live and for query_job / download_document). Optional: x-leceipt-mode and the owner-policy headers below.
Modes. x-leceipt-mode: test (default) is a LOCAL dry-run — create_invoice assembles the document and computes VAT totals but does not submit (no fiscal effect). x-leceipt-mode: live submits to Leceipt → Thai Revenue Department (real fiscal effect). Leceipt has no separate sandbox host; for non-fiscal end-to-end testing use a test certificate inside your own Leceipt account.
Tools
| Tool | What it does |
|---|---|
create_invoice |
Assemble a Thai e-Tax Invoice from { number, customer, items, includeVat?, discount?, date?/dateBE? }, compute Thai VAT 7% locally, and (in live mode) submit to Leceipt. Out: job_id (live) or computed_totals + payload (test dry-run). |
query_job |
Poll GET /etax/jobs/{id}. Out: status processing (still creating/signing) or complete (with file_id). |
download_document |
GET /etax/files/{fileId}. Out: { content_type, size_bytes, content_base64 } — base64-decode for the signed PDF/XML. |
Thai VAT & the document fields
items[].vatRate(LeceiptpercentVat):7standard VAT 7% ·0zero-rated (e.g. exports) ·-1VAT-exempt / non-VAT. Default7.includeVat:false(default) = unit prices are net, VAT added on top;true= prices already include VAT (the server backs it out).customer:name+taxIdrequired.taxNumberType=TXID(juristic, 13-digit taxpayer id, default) ·NIDN(individual, 13-digit national id) ·CCPT(passport) ·OTHR. ForTXID/NIDNthetaxIdmust be exactly 13 digits.branchNumberdefaults to head office00000.date: pass Gregorian ISOYYYY-MM-DD(converted to the Buddhist-EradateBEdd/MM/yyyy, year + 543) ordateBEdirectly.
Owner policy guardrails ride optional headers (x-agentpay-max-amount, x-agentpay-approval-above, x-agentpay-allowed-tools) — set by the human owner in client config; the agent cannot relax them. Cap scope: the amount gate reads the computed grand total (THB, VAT-inclusive). When a document-level discount is set, Leceipt's total is authoritative.
Endpoints wrapped
Auth: single header API-Key: <key> (Azure API Management subscription key — no token exchange).
| Call | Endpoint |
|---|---|
| Submit | POST https://api.leceipt.com/etax/documents/invoices-taxinvoices → job { id } |
| Job status | GET https://api.leceipt.com/etax/jobs/{id} → processing / complete |
| Download | GET https://api.leceipt.com/etax/files/{fileId} → PDF/XML |
Develop
node test/serve.js # local server on :3251
node test/e2e.js # protocol + VAT-7% math + CORS + policy + validation asserts + LIVE Leceipt probe
The e2e suite makes a real call to the Leceipt e-Tax API: a fake API key runs POST /etax/documents/invoices-taxinvoices and surfaces Leceipt's native HTTP 401 Access denied due to invalid subscription key (Azure APIM) — the deepest live verification possible without an onboarded merchant key (Leceipt signs inside the account; we never sign).
Safety
Pure stateless translation layer. Signing and the Revenue-Department filing stay inside your own Leceipt account; the API key travels per-request in a header, nothing is stored. Privacy policy.
One family
Invoices, local payments in 81 countries, and cross-border logistics — one family, same stateless BYO pattern:
- 💳 Payments hub (Taiwan e-invoice 電子發票 included): mcp.wishpool.app
- 🧾 Invoice family hub: inv.wishpool.app
- 📦 Logistics family hub: logi.wishpool.app
Sister invoice servers: Saudi ZATCA inv-sa · Mexico CFDI 4.0 inv-mx · Poland KSeF inv-pl · Chile DTE inv-cl · Brazil NF-e inv-br · Peru CPE inv-pe · India GST inv-in · Costa Rica inv-cr · Malaysia inv-my.
MIT licensed.
Установка Thailand e-Tax Invoices (Leceipt create, poll & download)
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/junter1989k-ai/thailand-invoice-mcpFAQ
Thailand e-Tax Invoices (Leceipt create, poll & download) MCP бесплатный?
Да, Thailand e-Tax Invoices (Leceipt create, poll & download) MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Thailand e-Tax Invoices (Leceipt create, poll & download)?
Нет, Thailand e-Tax Invoices (Leceipt create, poll & download) работает без API-ключей и переменных окружения.
Thailand e-Tax Invoices (Leceipt create, poll & download) — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Thailand e-Tax Invoices (Leceipt create, poll & download) в Claude Desktop, Claude Code или Cursor?
Открой Thailand e-Tax Invoices (Leceipt create, poll & download) на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Thailand e-Tax Invoices (Leceipt create, poll & download) with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
