FinOne Accounting (VN Merchants)

WarnAudited by ClawScan on May 18, 2026.

Overview

This accounting skill is purpose-aligned, but it can change or publish financial records through a remote MCP server using only a stored FinOne user ID, so it needs careful review before use.

Before installing, verify that https://api-uat.vbill.vn/mcp is the official FinOne/Vbill MCP endpoint and that the server enforces authorization beyond a userId. Use the skill only in trusted sessions, confirm the active userId before sensitive actions, and require explicit approval before publishing e-invoices, deleting invoices, syncing data, or changing product/VAT settings.

Findings (5)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If the wrong userId is used, or if a shared agent's memory is incorrect, actions could be taken against the wrong merchant's accounting account.

Why it was flagged

The artifact describes account access as header-less and driven by a userId stored in memory, while the same skill can create, delete, sync, and publish invoice data. That is high-impact financial authority without a clearly described credential or authorization boundary.

Skill content
Auth is header-less. Each tool call takes a `userId` argument. The merchant's FinOne `userId` lives in the agent's memory
Recommendation

Verify that the MCP server enforces real server-side authorization beyond the userId, and use this only in trusted sessions where the active merchant identity is explicitly confirmed.

What this means

Mistaken tool use could delete internal invoices, publish official e-invoices, or change product pricing/VAT data.

Why it was flagged

The exposed tools are directly capable of changing business/accounting records. This is aligned with the skill's purpose, and the irreversible e-invoice action has a confirmation rule, but the capability is still high impact.

Skill content
`deleteInvoice({userId, invoiceId})` - delete an internal invoice ... `createEInvoice({userId, invoiceId})` - publish the e-invoice officially. **Not reversible.** ... `updateProduct({userId, productName, updateData})` - update price / VAT
Recommendation

Require clear user confirmation before every destructive or business-changing action, not only before official e-invoice publication.

What this means

Private invoices, customer details, prices, VAT, and revenue/expense information may be processed by the remote FinOne/Vbill MCP service.

Why it was flagged

Invoice text and uploaded invoice images may be sent to a remote MCP server for OCR and accounting operations. This is expected for the stated integration, but it is sensitive financial data.

Skill content
The skill calls the FinOne MCP server at `https://api-uat.vbill.vn/mcp` ... `createInvoice({userId, invoiceData})` ... Accepts a text payload or an image (OCR built-in).
Recommendation

Only upload invoices intended for FinOne/Vbill processing, and verify the MCP endpoint is the official service before configuring it.

What this means

A stale or incorrect remembered userId could cause the agent to query or modify the wrong merchant account.

Why it was flagged

The skill intentionally reuses a persistent memory value to select the merchant account. The artifact includes a shared-user confirmation safeguard, but the stored value still has financial impact if stale or incorrect.

Skill content
Treat `finone.userId` in memory as the user's last-confirmed binding, not a fixed identity for the agent.
Recommendation

Confirm the active FinOne userId at the start of each sensitive session, especially in shared chats or shared agent deployments.

What this means

Users have less independent context for verifying that the skill and endpoint are officially maintained by the expected provider.

Why it was flagged

The package has no provided source or homepage while instructing users to configure a remote financial MCP service. This is not malicious by itself, but provenance is limited.

Skill content
Source: unknown; Homepage: none
Recommendation

Confirm the skill publisher and MCP URL with FinOne/Vbill documentation or support before using it for real merchant accounting data.