idux-ui-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LOG_LEVEL | No | 日志级别(debug/info/warn/error) | error |
| DOWNLOAD_TIMEOUT | No | 下载超时时间(毫秒) | 60000 |
| IDUX_ZIP_URL_VUE2 | No | Vue2 版本 zip 包下载地址(预留) | |
| IDUX_ZIP_URL_VUE3 | No | Vue3 版本 zip 包下载地址 | https://github.com/IDuxFE/idux/archive/refs/heads/main.zip |
| DEFAULT_VUE_VERSION | No | 默认使用的Vue版本 | vue3 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_idux_componentsB | 获取所有可用的idux组件列表(默认使用Vue3版本) |
| get_component_detailsA | 获取特定idux组件的详细信息,包括组件名称、描述、API文档(默认使用Vue3版本) |
| get_component_examplesC | 获取特定idux组件的使用示例(默认使用Vue3版本) |
| search_componentsC | 通过关键词搜索idux组件(默认使用Vue3版本) |
| update_components_cacheC | 手动更新组件信息缓存(默认使用Vue3版本) |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Tools target distinct operations: listing all components, searching by keyword, retrieving details, retrieving examples, and cache maintenance. list_idux_components and search_components have some overlap since search can also return component lists, but descriptions clarify. An agent could occasionally confuse when to list versus search.
Names mostly follow verb_noun snake_case (list_idux_components, get_component_details, get_component_examples, search_components, update_components_cache). Minor deviations: list_idux_components embeds 'idux' while others do not, and singular/plural varies (component vs components). Still readable and largely consistent.
Five tools are well-scoped for a component documentation MCP: discovery, detail, examples, search, and cache refresh. Each has a clear role with no bloat or missing essentials. The count fits the narrow domain perfectly.
Core lifecycle for component lookup is covered: list/search, details, examples, and cache update. Minor gap: no explicit version listing or selection despite 'default Vue3' mentions, but agents can likely pass arguments or work around it.