Skip to main content
Glama

Compoid_get_community_details

Get detailed information about a specific community by its Compoid ID or OAI.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
community_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A3.6/5.0
Behavior2/5

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

No annotations are provided, and the description is minimal. It only says 'Get detailed information', which implies a read operation but does not disclose return format, error handling, rate limits, or any behavioral traits. For a tool with no annotation coverage, more detail is expected.

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 that contains all necessary information without extraneous words. It is efficient and easily parsed.

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 tool is simple (1 parameter), has an output schema to cover return values, and the description clarifies the parameter semantics. It is adequate for a straightforward lookup, though it could mention error cases or validation, but these are not critical given the low complexity.

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 schema has 1 parameter with no description, and schema coverage is 0%. The description adds meaning by stating the parameter can be a 'Compoid ID or OAI', which clarifies the accepted value. However, it does not elaborate on formats or provide examples, so it only partially compensates for the missing schema 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 clearly states the verb 'Get' and resource 'detailed information about a specific community', with a specific identifier mechanism ('by its Compoid ID or OAI'). It distinguishes from siblings like search_communities and get_record_details by specifying the action and target.

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

Usage Guidelines3/5

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

The description implies the tool is for direct lookup by an identifier, but does not explicitly state when to use this over search_communities or get_record_details. The mention of 'specific community' and identifier hints at use cases, but lacks explicit alternatives or 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

B3.4/5.0
Disambiguation5/5

Each tool targets a distinct resource-action pair (create/get/update/search for communities and records, plus upload/download for files). No two tools have overlapping purposes; even get_record_details and download_files are clearly separated by metadata vs file retrieval.

Naming Consistency5/5

All tools follow a consistent 'Compoid_<verb>_<noun>' pattern in snake_case, e.g., create_community, get_record_details, search_records. The prefix and verb-noun structure are uniform across the entire set, making the naming predictable.

Tool Count5/5

With 10 tools, the server is well-scoped for managing two core resources (communities and records) plus file operations. Each tool serves a clear purpose without redundancy, and the count feels appropriate rather than bloated or thin.

Completeness4/5

The server provides create, read, update, and search for both communities and records, along with upload and download for files. The only notable gap is the absence of delete operations for either resource, but the core lifecycle (search, create, retrieve, update) is well covered.