Skip to main content
Glama

check_obligations

Given an AI agent use case and optional jurisdiction, returns all applicable regulatory obligations with evidence requirements, enforcement dates, and penalty information. Use this to understand what compliance requirements apply to a specific type of AI agent.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
use_caseYesThe AI agent use case to check. Examples: hiring_screening, credit_scoring, customer_service, content_moderation, medical_triage, autonomous_coding, financial_trading
jurisdiction_codeNoOptional jurisdiction code to filter by. Examples: EU, SG, US-CO. Omit to get all jurisdictions.

TDQS

A4.2/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 full burden of explaining behavior. It states the inputs (use case, optional jurisdiction) and the outputs (all applicable obligations with evidence requirements, enforcement dates, penalty information). It does not mention potential side effects or limitations, but for a read-only query tool, this is adequate. The description adds context that is not in the schema, such as the nature of the data returned.

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 concise sentences, each earning its place. The first sentence immediately states the function and returns, and the second sentence gives the use case. No unnecessary words or repetition. It is well-structured and front-loaded with the core action.

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 the tool has only 2 parameters, no output schema, and no annotations, the description effectively covers the purpose, inputs, and output content. It explains the types of information returned (evidence requirements, enforcement dates, penalties), which is essential since there is no output schema. It could mention edge cases like missing data or time requirements, but for a straightforward query tool, it is sufficiently complete.

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 input schema already describes both parameters thoroughly: use_case has examples, and jurisdiction_code explains it is optional and can be omitted. The description merely repeats 'AI agent use case and optional jurisdiction' without adding new parameter details. With schema coverage at 100%, the baseline is 3, and the description does not elevate it.

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 identifies the tool's function: 'Given an AI agent use case and optional jurisdiction, returns all applicable regulatory obligations with evidence requirements, enforcement dates, and penalty information.' It uses a specific verb ('returns') and resource ('regulatory obligations'), and the second sentence clarifies the use case ('understand what compliance requirements apply'). This distinguishes it from sibling tools like check_deadline or compare_jurisdictions, which target different aspects.

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 provides a clear usage context: 'Use this to understand what compliance requirements apply to a specific type of AI agent.' It implies when to use the tool, though it does not explicitly mention alternatives or exclusions. Since sibling tools exist for related but distinct purposes, the description could have been more explicit about not using this for deadlines or comparisons, but the context is clear enough.

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.3/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: check_deadline focuses on time-sensitive deadlines, check_obligations returns applicable obligations for a use case, compare_jurisdictions provides cross-border comparisons, and get_regulation_articles delves into specific regulation details. The descriptions effectively differentiate the tools, minimizing the risk of misselection.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in lowercase snake_case (check_deadline, check_obligations, compare_jurisdictions, get_regulation_articles). Even though verbs vary, the pattern is uniform and predictable, matching the calibration example for high coherence.

Tool Count5/5

With 4 tools, the server is well-scoped for its purpose. Each tool covers a necessary aspect of compliance monitoring—deadlines, obligations, comparisons, and regulation details—without unnecessary redundancy or bloat, fitting comfortably within the ideal 3-15 range.

Completeness4/5

The tool set covers the core compliance monitoring workflow: identifying applicable obligations, checking deadlines, comparing jurisdictions, and retrieving regulation details. However, there is no explicit tool to list all regulations or compliance categories, which could be a minor gap for agents unfamiliar with the domain. The existing tools can be chained to discover these, so the gap is workable.