4 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });validate_invoice, convert_xml_to_pdf, get_verification_challenge, submit_feedback<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="validate_invoice" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "validate_invoice",
"description": "Validate a Peppol UBL 2.1 or CII XML invoice against EN16931 (CEN) and Peppol BIS Billing 3.0 schematron rules. Returns validation status, errors, warnings, and a shareable results URL.",
"inputSchema": {
"type": "object",
"properties": {
"xml": {
"type": "string",
"description": "The raw XML content of the invoice to validate"
}
},
"required": [
"xml"
]
},
"annotations": {
"readOnlyHint": true
}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });submit_feedback{
name: "submit_feedback",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}submit_feedback: feedback, issue{ name: "submit_feedback", annotations: { untrustedContentHint: true } }document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "convert_xml_to_pdf" /* short, unique, verb-based */ }validate_invoice, convert_xml_to_pdf, get_verification_challenge, submit_feedback<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="validate_invoice" tooldescription="...">
<!-- the same action, as UI -->
</form>