Skip to main content
Glama

list_compliance_items

Read-only

Retrieve all compliance items and their current status for your organization. Filter by type, status, country, worker, or contract to track requirements and resolve gaps.

Instructions

List all compliance items and their status for the organization.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeNoFilter by compliance item type
limitNoResults per page
offsetNoPagination offset
statusNoFilter by compliance status
countryNoFilter by country code (ISO 2)
worker_idNoFilter by worker ID
contract_idNoFilter by contract ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior3/5

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

The readOnlyHint annotation already establishes that this is a safe read operation. The description adds organization-level scoping and says results include status, but does not describe pagination behavior, filter interactions, or whether it returns all items or a paginated subset.

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 a single front-loaded sentence with no wasted words. It immediately states the operation and resource.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only list tool whose annotations and schema cover safety and parameters, the description is minimally viable. It does not clarify the relationship to nearby compliance tools or reconcile the word 'all' with the seven available filter and pagination parameters.

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 all seven parameters are already documented in the schema. The description adds no additional parameter meaning, making the baseline of 3 appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear verb and resource ('List all compliance items and their status'), so an agent knows the general operation. However, it does not distinguish this tool from sibling compliance tools such as get_compliance_status or list_required_documents, leaving the agent to infer the boundary.

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

Usage Guidelines2/5

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

There is no explicit when-to-use guidance or comparison to alternatives. The phrase 'for the organization' implies scope but does not tell the agent when this list tool is preferable to get_compliance_status or list_required_documents.

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