Skip to main content
Glama

get_component_details

Retrieve details for a specific iDux UI component, including name, description, and API docs (defaults to Vue 3), to understand its usage.

Instructions

获取特定idux组件的详细信息,包括组件名称、描述、API文档(默认使用Vue3版本)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
vueVersionNoVue版本(默认使用vue3)vue3
componentNameYes组件名称

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description must carry behavioral disclosure. The verb '获取' (get) implies a non-mutating read and the default Vue3 note is helpful, but there is no statement about read-only guarantees, caching, permissions, or whether results are exhaustive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single front-loaded sentence that states purpose, scope, and the return payload with no wasted words. It is efficient, though minimal.

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 simple two-parameter read tool with fully documented schema and no output schema, the description covers what is fetched and the version default. Only minor gaps remain, such as how the API documentation is returned.

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 both parameters are already documented in the schema. The description's mention of the Vue3 default merely restates the schema's default/enum, adding no new semantics beyond the structured data.

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 names a specific verb+resource (get detailed info for a specific idux component) and enumerates what is returned (name, description, API docs). It is clearly distinguishable from list/search siblings, though it does not name them explicitly.

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?

Usage is only implied: fetch details when you already have a component name. There is no explicit when-to-use/when-not guidance and no mention of the sibling tools (list_idux_components, search_components, get_component_examples) that cover adjacent needs.

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