Skip to main content
Glama

post_quebec_invoice_compliance_check

Verifies GST/QST were calculated correctly per Revenu Quebec's current (non-compounded) formula, and flags whether a French invoice version is present per Charter of the French Language s.57/89/91. Pure arithmetic + text check; not legal or tax advice.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
subtotalYesPre-tax subtotal in CAD.
gst_amountYesGST amount as shown on the invoice.
qst_amountYesQST amount as shown on the invoice.
french_textNoThe invoice's French text, if any (optional -- its absence is itself flagged).
english_textNoThe invoice's primary/other-language text (optional but needed for the language check).

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the behavioral burden. It discloses that the tool performs only arithmetic and text checks, states the formula is non-compounded, flags absence of French text, and explicitly disclaims legal/tax advice. It does not detail error cases or threshold rounding behavior, but it gives strong transparency for a pure validation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences with high information density. It front-loads the main verification action, adds the French-language check, and ends with a useful disclaimer. Every phrase earns its place, and the optional-parameter clarification is packed into the schema text rather than bloating the main description.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given there is no output schema, the description does not explain the return shape, but the tool's outcomes are comparatively simple (pass/fail style flags for arithmetic and language presence). The main gaps are lack of explicit rounding rule and return structure, but the tool is simple enough that an agent can invoke it correctly with the provided guidance.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds semantic value by explaining that gst_amount and qst_amount are the values shown on the invoice, subtotal is pre-tax CAD, and the absence of french_text is itself flagged. It also clarifies that english_text is optional but needed for the language check, going beyond the schema's terse labels.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Verifies') and resource ('GST/QST calculation per Revenu Quebec formula') plus a second check (French invoice presence per Charter provisions), and clarifies it is a pure arithmetic/text check, not legal advice. This distinguishes it from siblings such as post_quebec_invoice_generate because it is a compliance verification tool, not a generation tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use it: when checking Quebec invoice compliance for GST/QST and French-language requirements. It does not explicitly name alternatives or when not to use it, but the sibling list clearly separates generation (post_quebec_invoice_generate) from checking, and the description's own scoping ('not legal or tax advice') adds a practical boundary.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

C2.7/5.0
Disambiguation2/5

Multiple tools occupy the same security-audit space: get_dns_lookup/get_domain_intelligence, get_security_posture/get_web_audit/post_domain_due_diligence, and the three post_security_repo_risk_report variants heavily overlap. Video generation is split only by duration, and get_ssl_check/get_security_posture both target TLS/certificate concerns, so an agent could easily select the wrong tool.

Naming Consistency3/5

All tools use snake_case and a get_/ post_ prefix, which is a recognizable convention and generally readable. However, the suffix order is inconsistent (get_url_parse vs get_security_posture vs post_security_repo_risk_repport_standard), and get/post are HTTP-style prefixes rather than semantic verbs, so the pattern is only partially coherent.

Tool Count2/5

34 tools is well above the 'too many' threshold and spans unrelated domains: domain security, repo risk, JSON/hash/text utilities, media generation, Quebec invoices, and x402 payments. Many tools are variants that could be consolidated (video durations, risk report tiers, audit scopes), so the count feels inflated rather than purposeful.

Completeness2/5

The set lacks a single apparent domain, so no complete lifecycle is clearly covered: video generation has no status/retrieval, repo risk reporting is read-only, and common companions (URL encoding, current timestamp, image analysis) are missing. It is a broad collection of one-off utilities rather than a coherent functional surface.

Resources