← 返回
效率工具 Key 中文

MY/SG Invoice & Receipt Parser

Extract structured data from Malaysian & Singaporean invoices/receipts. SST/GST-aware. Supports BM/EN/CN.
从马来西亚和新加坡的发票/收据中提取结构化数据,支持SST/GST税务识别,兼容马来语/英语/中文。
wms2537
效率工具 clawhub v2.0.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 467
下载
💾 17
安装
1
版本
#latest

概述

MY/SG Invoice & Receipt Parser

Extracts structured data from Malaysian and Singaporean invoices and receipts.

How to Use This Skill

Step 1: Charge billing and get tax rates

POST to the skill endpoint to authorize payment and retrieve current tax rates:

POST https://my-sg-invoice-parser.swmengappdev.workers.dev/parse
Content-Type: application/json

{
  "user_id": "<user_id>",
  "country": "MY"
}

The endpoint charges billing and returns current tax rates:

{
  "success": true,
  "data": {
    "charged": true,
    "tax_rates": {
      "MY": {"service": 0.06, "sales": 0.10, "tourism": 0.08},
      "SG": {"gst": 0.09}
    }
  }
}

If payment fails, you'll receive a payment_url to share with the user.

Step 2: Parse the invoice

Using your own capabilities, extract structured data from the invoice text or image. Support these languages:

  • Bahasa Malaysia (BM)
  • English (EN)
  • Chinese (CN) - Simplified and Traditional

For Malaysian invoices, detect:

  • SST Registration Number (look for "SST No" or "SST Reg")
  • Service Tax: 6%
  • Sales Tax: 10%
  • Tourism Tax: 8%

For Singaporean invoices, detect:

  • GST Registration Number (look for "GST Reg" or "GST No")
  • GST: 9%

Tax detection heuristics:

  • If text contains "SST" followed by "No" or "Reg" → Malaysian SST
  • If text contains "GST" followed by "Reg" or "No" → Singapore GST
  • Use the tax rates from Step 1 for calculations

Step 3: Extract structured data

Extract the following fields:

  • vendor: Business/company name
  • items: Array of line items, each with:
  • description: Item name
  • quantity: Number of units
  • unit_price: Price per unit
  • total: Line total
  • subtotal: Sum before tax
  • tax_type: "MY_SST_service", "MY_SST_sales", "SG_GST", etc.
  • tax_amount: Calculated tax amount
  • total: Final total including tax
  • currency: "MYR" for Malaysia, "SGD" for Singapore

Output Format

Return the parsed invoice as JSON:

{
  "vendor": "Restoran Nasi Kandar Line Clear",
  "items": [
    {"description": "Nasi Campur", "quantity": 2, "unit_price": 12.50, "total": 25.00},
    {"description": "Teh Tarik", "quantity": 2, "unit_price": 3.50, "total": 7.00}
  ],
  "subtotal": 32.00,
  "tax_type": "MY_SST_service",
  "tax_amount": 1.92,
  "total": 33.92,
  "currency": "MYR"
}

Pricing

$0.02 USDT per call via SkillPay.me

版本历史

共 1 个版本

  • v2.0.0 当前
    2026-03-30 21:04 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

productivity

Nano Pdf

steipete
使用nano-pdf CLI通过自然语言指令编辑PDF
★ 275 📥 114,862
productivity

Word / DOCX

ivangdavila
创建、检查和编辑 Microsoft Word 文档及 DOCX 文件,支持样式、编号、修订记录、表格、分节符及兼容性检查等功能。
★ 439 📥 147,722
communication-collaboration

SEA WhatsApp Business Bot

wms2537
**AI智能WhatsApp自动回复系统** 专为马来西亚/新加坡中小企业打造 支持马来文/英文或中文/英文双语 自动处理预约、常见问题及订单
★ 0 📥 583