Skip to main content
Glama
larpingvibecoder

clo3d-mcp

clo_api_catalog

Search and browse functions, types, and constants in the running CLO version without executing API calls. Use modules and queries to locate documentation, with paging via offset and limit.

Instructions

Discover functions, types and constants in the RUNNING CLO version. Paged; no API functions are executed. Search names and docstrings. Modules include rest_api and ApiTypes. Follow next_offset for full coverage.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNo
moduleNo
offsetNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/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 burden. It explicitly states 'no API functions are executed', which is a crucial safety trait, and mentions paging via next_offset. This gives the agent confidence that it is a read-only operation. It does not discuss side effects or error handling, but for a catalog tool this is adequate.

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, front-loaded with the primary purpose, and includes key behavioral notes (paging, no execution) without fluff. Every sentence earns its place, 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?

For a discovery tool with no output schema and four optional parameters, the description covers the core usage: what it does, how to paginate, and that it is safe. It does not explain the return format, but that is less critical for a catalog tool. The absence of annotations is compensated by the explicit no-execution statement.

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 0%, so the description must compensate. It indirectly covers parameters: 'Search names and docstrings' implies the query parameter, 'Modules include rest_api and ApiTypes' explains module, and 'Paged' plus 'next_offset' hints at limit and offset. However, it does not explicitly map each parameter to its purpose, leaving some inference needed.

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 clearly states the tool discovers functions, types, and constants in the running CLO version, with a specific verb and resource. It does not explicitly distinguish from the sibling clo_api_search, but the mention of 'no API functions are executed' and paging hints at its read-only catalog role.

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?

No explicit when-to-use or when-not-to-use guidance is given, nor are alternatives like clo_api_search mentioned. The description implies it is for exploring the API catalog, but does not contrast it with similar tools. The instruction to follow next_offset is a usage detail, but not about tool selection.

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