Skip to main content
Glama

validate_artf_request

Read-onlyIdempotent

Validate an ARTF (IAB Tech Lab Agentic Real Time Framework) RTBRequest envelope: required members, lifecycle and payload coherence, tmax plausibility, originator and applicable_intents enums, plus full OpenRTB validation of the bid request and bid response it carries. The carried payloads are protobuf JSON, so they are validated in that dialect.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
payloadYesThe ARTF RTBRequest envelope as a raw JSON string.
versionNoOpenRTB version id to validate against (default 2.6-202606). One of: 2.0, 2.1, 2.2, 2.3, 2.3.1, 2.4, 2.5, 2.6-202204, 2.6-202210, 2.6-202211, 2.6-202303, 2.6-202309, 2.6-202402, 2.6-202409, 2.6-202501, 2.6-202505, 2.6-202606, 3.0

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
validYes
issuesYes
versionYes
payload_typeYes

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds valuable behavioral context about what validation is performed (lifecycle, tmax plausibility, enums, full OpenRTB validation) and that payloads are treated as protobuf JSON. This goes beyond the annotations without contradicting them.

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 compact and front-loaded: the first sentence states the primary purpose and key validation areas, the second clarifies the protobuf JSON dialect. Every clause adds value with no redundancy or fluff, making it highly efficient.

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 covers the main validation aspects thoroughly and is complemented by annotations and an output schema. It could be slightly more explicit about when to choose this over sibling tools, but for a validation tool with rich annotations and output schema, it is substantially complete.

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 description coverage is 100%, so baseline is 3. The description adds meaningful context for the payload parameter by explaining that carried payloads are protobuf JSON and validated in that dialect, and that both the bid request and bid response inside the envelope are fully validated. This goes beyond the schema's simple field descriptions.

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 uses a specific verb ('Validate') and names the exact resource ('ARTF RTBRequest envelope'), then enumerates the validation dimensions (required members, lifecycle, payload coherence, tmax plausibility, enums, OpenRTB validation). This clearly distinguishes it from sibling tools like validate_bid_request and validate_bid_response by focusing on the envelope and its carried payloads.

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 makes clear it is for validating an ARTF RTBRequest envelope, including its carried bid request and bid response. It implies that standalone bid request/response validation should use sibling tools, but it does not explicitly state when-not-to-use or name alternatives. Context is clear but lacks explicit exclusions.

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

A4.4/5.0
Disambiguation5/5

Each tool targets a distinct aspect of the RTBlint domain: protocol discovery (get_adcp_capabilities), version enumeration (list_openrtb_versions), ARTF request and response validation (validate_artf_request, validate_artf_response), and OpenRTB payload validation (validate_bid_request, validate_bid_response). The descriptions clearly differentiate their purposes and invocation order.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern: get_adcp_capabilities, list_openrtb_versions, validate_artf_request, validate_artf_response, validate_bid_request, validate_bid_response. The naming is uniform, predictable, and clearly indicates the action and target.

Tool Count5/5

With 6 tools, the set is well-scoped for the domain of RTB validation and protocol discovery. Each tool addresses a necessary function without redundancy or excess, making the server easy to navigate and integrate into an agentic pipeline.

Completeness4/5

The tool set covers key lifecycle steps: discovery, version selection, request validation, response validation, and cross-validation. A minor gap is the lack of a tool for validating mutations that don't involve ARTF, but the ARTF tools handle the core workflow well.