Skip to main content
Glama

VITNA — Agent Compliance Preflight

consent_check

Before you process someone's personal data, ask VITNA whether an active consent actually permits it for this purpose. Give the data principal + purpose (and optional category); returns { allowed, reason, matching_consent_id, principal_id }, a determination you must honour yourself since VITNA evaluates and records but does not enforce. Use this for personal-data processing legality; for a dangerous technical action (shell / file / DB / network) use vitna_preflight instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
purposeYesPurpose code (e.g. 'operational_observability').
categoryNoOptional permitted-category check.
principal_idNoUUID of the data principal (if known).
principal_refNoOperator-side identifier; will be SHA-256-hashed.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.4/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 full behavioral burden and does well: it discloses that VITNA evaluates and records but does not enforce, and it exposes the return shape. This goes beyond a simple 'check consent' statement and gives the agent realistic expectations about side effects and enforcement limits.

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 no wasted words. It front-loads the core use case, then the return contract, then the sibling-tool distinction, making it easy for an agent to parse quickly.

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?

For a tool with no output schema and no annotations, the description covers the essential context: when to use it, what it returns, and that it does not enforce. It could specify what happens when no active consent exists, but the returned reason field and the agent's obligation to honor the determination are enough for correct invocation.

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?

Schema description coverage is 100%, so the baseline is 3. The description adds little parameter-level detail beyond restating 'data principal + purpose (and optional category)', while the schema already documents each parameter and the hashing behavior of principal_ref.

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 clearly states the tool's function: asking VITNA whether an active consent permits processing personal data for a given purpose. It also distinguishes itself from vitna_preflight by explicitly naming it as the alternative for dangerous technical actions, so an agent can tell the siblings apart.

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

Usage Guidelines5/5

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

The description gives explicit when-to-use guidance: before processing personal data, for personal-data processing legality. It also provides a clear when-not-to-use case by pointing to vitna_preflight for shell/file/DB/network actions, which is exactly the kind of alternative routing an agent needs.

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.