Skip to main content
Glama
ark-forge

eu-ai-act-scanner

by ark-forge

certify_compliance_report

Certify an EU AI Act compliance report to create a tamper-proof audit trail. Returns a proof ID and public verification URL for auditors.

Instructions

Make your compliance report tamper-proof for Art. 12 audit trail — pass the report JSON, get back a proof_id and a public verification URL you can hand to auditors. Certified plan required. Run generate_report() first to produce the report.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
report_dataYesJSON string of the compliance report to certify.
trust_layer_keyYesArkForge Trust Layer API key.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.5.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It explains the transformation (tamper-proofing), the output (proof_id, URL), and prerequisites (generate_report, certified plan). It does not cover rate limits or side effects, but for a certification action this is reasonable and informative.

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 two sentences with no redundant words. The main purpose and key outputs are front-loaded, and the prerequisites are in the second sentence. Every piece contributes to understanding.

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?

The description explains the return values (proof_id, verification URL) and the audit context (Art. 12, auditors), which compensates for the absence of an output schema. It also gives a prerequisite and a required plan. Minor gaps like error handling or key input are not significant given the simple parameter set.

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

Parameters3/5

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

The schema already describes both parameters fully (report_data as JSON string, trust_layer_key as API key). The description reinforces 'pass the report JSON' but adds no new parameter semantics beyond what the schema provides, so the baseline score of 3 is appropriate.

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 starts with a specific verb phrase 'Make your compliance report tamper-proof' and identifies the resource (compliance report) and the outcome (proof_id and public verification URL). It clearly distinguishes this certification tool from sibling tools like generate_report and check_compliance.

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?

It provides a clear prerequisite: 'Run generate_report() first to produce the report' and notes 'Certified plan required.' This gives strong guidance on when to use the tool, though it does not explicitly state when not to use it or name alternative tools.

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