Cubism External Edit MCP
This MCP server enables AI agents to control Live2D Cubism Editor 5.4 Alpha via natural language, offering:
Connection & Authorization: Check status and permissions (Allow for read/write, Edit for editing) with automatic reconnection and persistent tokens.
Document & Model Access: Retrieve current model UID, list open documents (Modeling, Physics, Animation), get document details, and query the active editing mode.
Parameter Management: Read/write/clear parameter values; fetch parameter metadata (type, range, groups) and group structures; set values instantly without transactions.
Model Structure Queries: Explore full hierarchical trees of parameters, parts (ArtMesh, WarpDeformer, RotationDeformer, Part, Glue, etc.), and deformers; get individual object details, list selected objects, and identify keyframe bindings.
Editing Operations (auto-wrapped in transactions): Add, edit, or delete parameters, groups, parts, deformers, art meshes, glues, and keyframes; move objects on the palette; adjust hierarchies; control editor selection programmatically.
Batch Editing: Execute multiple edit actions in a single atomic transaction with automatic rollback on failure, ensuring safe, cohesive changes.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Cubism External Edit MCPShow me the parameter structure of the model"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Cubism External Edit MCP
将 Live2D Cubism Editor 的外部应用集成 API 封装为 MCP (Model Context Protocol) 工具,让 AI Agent 通过自然语言操控 Cubism Editor 进行建模操作。
架构
graph TD
AI["AI Agent"]
MCP["cubism_mcp.py<br/>MCP Server, 42 Tools"]
Editor["Cubism Editor 5.4 Alpha<br/>外部应用集成 API"]
AI -->|"stdio (MCP Protocol)"| MCP
MCP -->|"WebSocket (ws://localhost:22033)"| EditorRelated MCP server: live2d-to-agent
功能特性
读写操作 — 读取/写入模型参数值、查看文档列表、获取编辑模式(适用 Editor 4.x+)
完整模型查询 — 参数结构、部件结构、变形器结构、单个对象详情(需 5.4 Alpha)
编辑操作 — 增删改查参数/部件/变形器/ArtMesh/Glue,自动事务包裹(需 5.4 Alpha)
批量编辑 — 同一事务内执行多个操作,任一失败自动回滚
权限分级 — 读写需 Allow 授权,编辑需 Edit 授权
自动重连 — Editor 重启后自动重连,3 秒间隔
Token 持久化 — 认证令牌缓存到
~/.cubism-mcp/token.txt,避免重复授权
环境要求
组件 | 版本 |
Python | ≥ 3.10 |
Cubism Editor | 5.4 Alpha(有效期至 2026-09-14) |
操作系统 | Windows / macOS |
使用流程
快速开始
复制以下提示词发给你的 AI Agent:
根据 https://github.com/nana7chi/CubismExternalEditMCP/blob/master/README.md 完成 cubism-mcp 的安装和配置。如果电脑上还没有
uv,请先帮我安装。配置完成后告诉我是否就绪。
第一步:安装 uv(仅一次)
uv 是一个极小的 Python 包管理器,用于自动安装和运行本 MCP。安装后无需再管 Python 环境。
macOS(终端粘贴运行):
curl -LsSf https://astral.sh/uv/install.sh | shWindows(PowerShell 粘贴运行):
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"安装完成后重启终端,输入 uv --version 能看到版本号即成功。
第二步:在 AI Agent 中配置 MCP
支持
ClaudeCode,Codex,Workbuddy等各种支持MCP的客户端
第一次启动会自动下载依赖包,耗时约 1–2 分钟,之后秒启。
方式一:PyPI 安装(推荐)
{
"mcpServers": {
"cubism-mcp": {
"type": "stdio",
"command": "uvx",
"args": ["cubism-mcp"],
"description": "Cubism Editor MCP",
"env": { "NO_PROXY": "localhost,127.0.0.1" }
}
}
}国内镜像源配置
如果 PyPI 官方源下载慢,可使用国内镜像(清华/阿里云/腾讯云等均可用):
{
"mcpServers": {
"cubism-mcp": {
"type": "stdio",
"command": "uvx",
"args": ["--index-url", "https://pypi.tuna.tsinghua.edu.cn/simple", "cubism-mcp"],
"description": "Cubism Editor MCP",
"env": { "NO_PROXY": "localhost,127.0.0.1" }
}
}
}也可替换为阿里云
https://mirrors.aliyun.com/pypi/simple或腾讯云https://mirrors.cloud.tencent.com/pypi/simple。
方式二:uvx 在线运行(GitHub 源)
{
"mcpServers": {
"cubism-mcp": {
"type": "stdio",
"command": "uvx",
"args": ["--from", "git+https://github.com/nana7chi/CubismExternalEditMCP.git", "cubism-mcp"],
"description": "Cubism Editor MCP",
"env": { "NO_PROXY": "localhost,127.0.0.1" }
}
}
}方式三:本地克隆运行
克隆源码到本地(或下载ZIP并解压)
git clone https://github.com/nana7chi/CubismExternalEditMCP.git添加以下MCP配置(修改
cwd为实际路径):
{
"mcpServers": {
"cubism-mcp": {
"type": "stdio",
"command": "python",
"args": ["cubism_mcp.py"],
"cwd": "J:/修改为实际路径/CubismExternalEditMCP",
"description": "Cubism Editor MCP",
"env": { "NO_PROXY": "localhost,127.0.0.1" }
}
}
}第三步:在 Cubism Editor 中开启外部集成
启动 Cubism Editor 5.4 Alpha,打开一个模型
菜单「文件」→「外部应用程序集成的设置」
确认端口为
22033,打开「使用」开关弹出授权对话框,找到
cubism-mcp,勾选 Allow 和 Edit,点 OK
如果没看到弹窗,检查 Editor 右下角是否有闪烁的外部应用图标,点击即可打开对话框。

第四步:开始使用
在 AI Agent 中用自然语言操控 Editor,例如:
"列出当前模型的参数结构"
"查看部件层级"
"把眉毛部件的标签色改成蓝色"
"新建参数 ParamsTest,ID 为 ParamTest,范围 0-1,默认 0.5"
"批量添加 3 个关键帧到 ParamAngleX"注意:每次重启 Cubism Editor 后,都需要重新开启「外部应用集成」开关并勾选 Allow + Edit 权限。
可用工具
诊断
工具 | 说明 |
| 检查连接状态、注册状态、Allow/Edit 授权 |
读写操作
工具 | 参数 | 说明 |
| — | 获取当前打开模型的 UID |
| — | 列出所有打开的文档(建模/物理/动画) |
|
| 按 UID 获取单个文档详情 |
| — | 获取编辑模式(Physics/Modeling/Animation/…) |
|
| 读取模型参数当前值 |
|
| 写入参数值(无需编辑事务) |
|
| 清除 SetParameterValues 的临时缓存 |
|
| 参数元信息(名称/范围/Keyform/类型) |
|
| 参数组列表 |
查询结构(5.4 Alpha 新增)
工具 | 参数 | 说明 |
|
| 参数完整结构树(组+参数层级) |
|
| 部件结构树(ArtMesh/Deformer/Part/Glue) |
|
| 变形器结构树 |
|
| 获取指定对象详情 |
|
| 获取当前选中的对象列表 |
|
| 获取对象的关键帧绑定关系 |
|
| 按参数关键帧反查关联对象 |
编辑操作(5.4 Alpha 新增)
每个编辑 Action 均有独立 Tool(带完整类型签名和参数校验),同时保留 cubism_edit / cubism_edit_batch 用于批量操作。
参数编辑
Tool | Action | 说明 |
| AddParameter | 添加参数 |
| EditParameter | 编辑参数属性 |
| DeleteParameter | 删除参数 |
| AddParameterGroup | 添加参数组 |
| EditParameterGroup | 编辑参数组属性 |
| DeleteParameterGroup | 删除参数组 |
| MoveParameter | 移动参数到指定组 |
| MoveParameterGroup | 调整参数组顺序 |
关键帧编辑
Tool | Action | 说明 |
| AddParameterKey | 添加关键帧 |
| DeleteParameterKey | 删除关键帧 |
| MoveParameterKey | 移动关键帧位置 |
部件编辑
Tool | Action | 说明 |
| AddPart | 添加部件 |
| EditPart | 编辑部件属性 |
| EditArtMesh | 编辑 ArtMesh 属性 |
| EditGlue | 编辑 Glue 属性 |
| DeleteObject | 删除对象 |
| MoveObjectOnPartsPalette | 移动对象在部件面板的位置 |
变形器编辑
Tool | Action | 说明 |
| AddWarpDeformer | 添加弯曲变形器 |
| AddRotationDeformer | 添加旋转变形器 |
| EditWarpDeformer | 编辑弯曲变形器属性 |
| EditRotationDeformer | 编辑旋转变形器属性 |
选择操作
Tool | 说明 |
| 编程式选中对象 |
| 清除所有选中 |
通用
Tool | 参数 | 说明 |
|
| 通用编辑入口(向后兼容) |
|
| 批量编辑(单事务,失败回滚) |
常见问题
症状 | 原因 | 解决 |
MCP 状态红色 | Python 路径/依赖/ | 检查 Python 版本 ≥ 3.10,确认依赖安装、 |
未连接到 Editor | Editor 未启动或外部集成未开启 | 启动 Editor → 加载模型 → 文件菜单开启外部集成 |
未授权 | 弹窗未勾选 Allow | 在外部集成对话框中勾选 Allow |
编辑报错 | 弹窗未勾选 Edit | 在外部集成对话框中勾选 Edit |
重启后失效 | Editor 重启需重新授权 | 重新开启外部集成并勾选权限 |
操作报错 | 参数/ID 不正确 | 先用 |
开发
# 直接运行测试
python cubism_mcp.py
# 依赖
pip install -r requirements.txt依赖
包 | 用途 |
| MCP 服务端框架(FastMCP + stdio 通信) |
| WebSocket 客户端,连接 Editor API |
注意事项
Alpha 版本限制:Cubism Editor 5.4 Alpha 有效期至 2026-09-14,到期后需升级
重启授权:每次重启 Editor 都需要重新开启外部应用集成并勾选权限
单模型:MCP 服务同时只能操作一个打开的模型
事务安全:编辑操作自动包裹
EditBegin/EditEnd,批量操作失败自动Cancel回滚
License
MIT
Available Tools
17 toolscubism_clear_parameter_valuesC
清除发送到模型的临时参数值缓存。与 SetParameterValues 配套使用, 可显式将模型恢复到参数写入前的状态。
Args: model_uid: 模型 UID
| Name | Required | Description | Default |
|---|---|---|---|
| model_uid | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry full burden. It mentions clearing cache and restoring state but does not disclose side effects, whether it is destructive, or prerequisites. For example, it doesn't say if it affects all parameters or requires certain permissions. This leaves significant gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is short and front-loaded with the primary action. The inclusion of an Args section adds structure, though it is not standard for MCP descriptions. Overall, it gets to the point with minimal fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
While an output schema exists (not shown), the description does not explain the 'temporary parameter value cache' concept or what happens after clearing. It lacks details on behavior, error conditions, or behavioral impact. Given the tool's complexity (mutation related to parameter state), the description is insufficient for full understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, meaning the description does not explain the parameter. The Args section lists 'model_uid' but provides no additional definition, type, or format beyond the schema. The description adds minimal value for parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action: clearing temporary parameter value cache sent to the model and restoring state. It uses a specific verb ('清除' - clear) and resource ('临时参数值缓存' - temporary parameter value cache). It also mentions pairing with SetParameterValues, which distinguishes its role among siblings, though not fully differentiating from all tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description says it is used with SetParameterValues, providing context for when to use it. However, it does not explicitly state when not to use it or mention alternatives like cubism_get_parameter_values or cubism_edit. The guidance is implied but lacks exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cubism_editA
执行编辑操作。会自动处理 EditBegin/EditEnd。
Args: action: 编辑 API 名称,如 AddParameter / EditPart / AddWarpDeformer params: 编辑 API 的参数对象(无需 ModelUID,自动填充)
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | ||
| params | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses automatic handling of EditBegin/EditEnd, which is useful transactional behavior. However, it does not mention other traits such as effects on model state, error conditions, or required permissions. Adequate but minimal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise: two sentences plus a structured Args list. No filler or redundancy, every sentence is meaningful.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema (not needed to describe), the tool is fairly complete. It explains the purpose, transaction handling, and parameter semantics. Could mention the implicit current document context, but overall adequate for a simple edit tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, but the description adds significant meaning: action is an API name with examples, and params is an object that automatically receives ModelUID. This helps the agent understand parameter usage beyond the schema's bare types.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states 'execute edit operation' and automatically handles EditBegin/EditEnd, which indicates a single edit operation. Combined with the action enum listing specific APIs like AddParameter, EditPart, etc., the verb and resource are clear. However, the description alone is slightly generic and could be more specific, hence a 4.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus alternatives like cubism_edit_batch or other sibling tools. The description does not mention prerequisites, context, or exclusions, leaving the agent without clear selection criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cubism_edit_batchA
批量执行多个编辑操作,在同一个 EditBegin/EditEnd 事务内完成。
Args: actions: [{action, params}] 数组,action 是编辑 API 名称,params 是该 API 的参数对象
| Name | Required | Description | Default |
|---|---|---|---|
| actions | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description reveals that operations are executed within a transaction (atomicity). However, it does not disclose failure behavior, rollback, permissions, or side effects. With no annotations, the description carries the full burden and provides only partial transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: two lines covering purpose and parameter structure. No unnecessary words, front-loaded with the key idea, and every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the batch nature and nested objects, the description adequately covers the parameter structure and transaction behavior. The output schema exists, so return values are covered. However, it could provide more context about error handling or transaction rollback to be fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage, but the description adds crucial semantics: 'actions: [{action, params}] array, action is edit API name, params is its parameter object'. This provides the structure and meaning of each element, which the schema (array of objects with additionalProperties) lacks entirely.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'batch execute multiple edit operations' with 'within the same EditBegin/EditEnd transaction', which defines its purpose as performing multiple edits atomically. It distinguishes from the sibling tool 'cubism_edit' by implying batch vs single operation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for multiple edits but does not explicitly state when to use versus alternatives like 'cubism_edit'. It lacks explicit when-to-use/when-not-to-use guidance or mention of alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cubism_get_current_edit_modeA
获取 Editor 当前的编辑模式。
返回值: Physics/Modeling/Animation/ModelingMeshEdit/FormAnimation
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description bears full burden for transparency. It correctly identifies the tool as a read-only getter by stating '获取' and listing return values. However, it does not mention potential failure modes or whether a model must be open, leaving some behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise (two sentences) and places the core action first. Every word serves a purpose, with no unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity and the presence of an output schema, the description provides sufficient information: it states the resource ('Editor 当前的编辑模式') and the possible return values. However, it could mention that the Editor is a Cubism Editor context, which is assumed but not explicit.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline score is 4 per rubric. The description adds no parameter-level detail, but none is needed since the input schema is complete and empty.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool retrieves the current edit mode and lists possible return values (Physics/Modeling/Animation/ModelingMeshEdit/FormAnimation). However, it does not explicitly differentiate from similar sibling tools like cubism_status, leaving some ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. There is no mention of prerequisites, context, or exclusions, which limits its usefulness for an AI agent deciding which tool to invoke.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cubism_get_deformer_structureC
获取模型的变形器结构树
Args: model_uid: 模型 UID
| Name | Required | Description | Default |
|---|---|---|---|
| model_uid | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It does not disclose behavioral traits such as whether the operation is read-only, error handling, or performance implications. The name implies read-only, but the description provides no explicit confirmation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise (one sentence plus Args list), but given the low schema coverage, it is under-informative. It earns basic marks for being brief, but does not provide adequate detail for an agent to use the tool effectively.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has a single parameter and an output schema exists, which may document return values. However, the description does not mention the output or provide context about the deformer structure tree. It is adequate for a simple getter but lacks completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description only lists the parameter name and a Chinese translation ('模型 UID'). It adds minimal semantic context beyond the schema's title 'Model Uid', lacking explanation of how to obtain the UID or any constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it gets the model's deformer structure tree. It is a specific verb+resource pair, but it does not differentiate from sibling tools like cubism_get_parameter_structure or cubism_get_part_structure, which likely return related but different hierarchies.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives. The description simply states what it does without any context about prerequisites, when not to use, or how it fits with other tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cubism_get_documentB
通过 DocumentUID 获取单个文档的详细信息。
Args: document_uid: 文档 UID(可通过 cubism_get_documents 获取)
| Name | Required | Description | Default |
|---|---|---|---|
| document_uid | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states it gets '详细信息' but does not disclose behavioral traits like idempotency, side effects, or access requirements. The presence of an output schema mitigates the lack of return description, but overall transparency is minimal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise, with a single sentence front-loading the purpose, followed by a clear Args section. No unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema, the description is sufficient for a simple retrieval tool with one parameter. It explains the parameter source and the core action, leaving details of the output to the schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, but the description adds meaning by explaining 'document_uid' as '文档 UID' and its source from cubism_get_documents. For a single parameter, this adds useful context, though it does not specify format or constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states '获取单个文档的详细信息' (get detailed information of a single document), providing a specific verb and resource. It implicitly distinguishes from the list tool cubism_get_documents by specifying '单个' (single), but does not explicitly contrast with other siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description only hints that document_uid can be obtained from cubism_get_documents, but lacks explicit guidance on when to use this tool versus alternatives, no when-not or exclusion criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cubism_get_documentsA
列出 Editor 中当前打开的所有文档(工作区)。 按类型分为 PhysicsDocuments(物理模拟)、ModelingDocuments(模型编辑)、 AnimationDocuments(动画编辑),每种各为一个数组,无对应类型时为空数组。
无需 model_uid 参数,返回的是 Editor 全局打开的文档列表。
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the return structure (arrays per type, empty arrays if missing) and that it returns the globally open list. However, it does not mention edge cases (e.g., no documents open) or performance implications.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, with three sentences that are front-loaded with the main purpose. Every sentence provides necessary information without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no input parameters and an output schema exists, the description adequately explains the return format (three arrays) and scope (global list). It is complete for this simple tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters with 100% coverage. The description adds value by explaining the tool's behavior and output structure, which is sufficient for a parameterless tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists all currently open documents in the Editor, categorized by type (PhysicsDocuments, ModelingDocuments, AnimationDocuments). It distinguishes from siblings like cubism_get_document by noting that no model_uid is needed and it returns the global list.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use (to get the list of open documents) and contrasts with tools that require a model_uid. It provides clear context but lacks explicit exclusions or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cubism_get_model_uidA
获取当前在 Cubism Editor 中打开的模型 UID
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries burden. It identifies a read operation but does not disclose error conditions (e.g., no model open) or side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence with no fluff. Front-loaded and directly conveys purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Tool has no parameters and has an output schema (though not shown). Description is complete enough for a simple getter, but could mention output format or relationship to sibling tools.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters; schema coverage is 100% trivial. Baseline score of 4 applies, and description does not need to add parameter info.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it gets the model UID from Cubism Editor. The verb 'get' and resource 'model UID' are specific, and the tool is distinct from siblings like cubism_get_parameters.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives like cubism_get_parameter_values. The simple no-parameter design implies straightforward usage, but explicit context is missing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cubism_get_objectB
获取指定对象的信息(按 Type 返回不同数据结构:ArtMesh/Part/WarpDeformer/RotationDeformer/Glue)
Args: model_uid: 模型 UID id: 对象 ID
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| model_uid | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavioral traits. It mentions that data structures vary by Type, but does not cover side effects (e.g., read-only nature), permissions, error conditions, or other behaviors. This is insufficient for safe invocation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very short (one line plus Args list) and well-structured in a docstring format. It is appropriately sized and front-loaded, though it could be more concise by omitting the redundant Args section since the schema already lists parameters.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that an output schema exists, the description need not detail return values. However, it lacks completeness: no examples, no explanation of the object types, no mention of possible errors or versioning. For a simple tool with two required params, it is adequate but not thorough.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, meaning the description does not add meaning beyond parameter names. The Args section merely restates the names ('模型 UID', '对象 ID') without explaining constraints, formats, or sources. This fails to compensate for the lack of schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
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 (对象/object), and explicitly notes that the returned data structure varies by Type (ArtMesh, Part, etc.). This distinguishes it from sibling tools like cubism_get_parameters or cubism_get_part_structure, which are more specific.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no explicit guidance on when to use this tool versus alternatives. It does not mention when not to use it, prerequisites, or suggest other tools for specific needs. Usage is only implied, leaving the agent to infer.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cubism_get_parameter_groupsB
获取模型的参数组列表(组 UID 和组名称)。
Args: model_uid: 模型 UID
| Name | Required | Description | Default |
|---|---|---|---|
| model_uid | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full responsibility for behavioral disclosure. It merely states the operation (getting a list) without mentioning side effects, permissions, rate limits, or read-only nature. For a read operation, this is a minimal disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very short (two sentences) and front-loaded. It contains no unnecessary words, but the brevity limits its utility. It is concise but could be more informative without losing conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one parameter and an output schema (which exists but is not shown), the description is minimally adequate. It specifies the output contains group UID and names, but lacks details on format or structure. Given the output schema, the description does not need to fully specify return values.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must add meaning beyond the schema. It only repeats 'model_uid: 模型 UID', which adds no additional detail beyond the parameter name and type. This does not compensate for the lack of schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves a list of parameter groups (group UID and names) for a model, using the specific verb '获取'. This distinguishes it from siblings like cubism_get_parameters (parameters) and cubism_get_parameter_structure (structure).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives. The description lacks context about prerequisites, use cases, or exclusion conditions, leaving the agent to infer appropriate usage from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cubism_get_parametersA
获取模型参数的详细元信息(类型、范围、默认值、关键点、融合变形、循环等)。
比 cubism_get_parameter_values 多返回参数名称、类型、范围、GroupUID 等结构信息。
Args: model_uid: 模型 UID
| Name | Required | Description | Default |
|---|---|---|---|
| model_uid | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description bears full burden. It correctly implies a read operation ('获取') and describes the data returned, but does not explicitly state read-only behavior, authorization needs, or side effects. Given the output schema exists, the description is sufficient but lacks explicit safety traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: one sentence for purpose, one for differentiation, one bullet for the parameter. No wasted words, front-loaded with the core action.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has an output schema, it does not need to describe return values. The description covers input parameter semantics and differentiation from a key sibling. It could mention usage contexts like when detailed parameter structure is needed, but is mostly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0% (no parameter descriptions in schema), so the description compensates by adding an Args section explaining model_uid as '模型 UID'. This adds meaning beyond the bare schema. With only one parameter and clear explanation, it helps the agent.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states it gets detailed metadata of model parameters including type, range, default, key points, blend shapes, loops. It explicitly distinguishes itself from cubism_get_parameter_values by noting it returns additional structural information like parameter names, types, ranges, GroupUID.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description directly compares with cubism_get_parameter_values, clearly indicating when to use this tool for richer metadata. However, it does not explicitly state when not to use it or mention other alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cubism_get_parameter_structureA
获取模型的完整参数结构树(参数组 + 参数,含 Min/Default/Max/KeyValues)
Args: model_uid: 模型 UID(可通过 cubism_get_model_uid 获取)
| Name | Required | Description | Default |
|---|---|---|---|
| model_uid | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It merely states what is returned but does not disclose behavioral traits such as read-only nature, cost, side effects, or authentication requirements. The description is too brief for a tool with no annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with two sentences, front-loading the purpose immediately. No redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that an output schema exists (so return values need not be described), and there is only one parameter, the description is sufficiently complete. It could mention that it is a read operation, but overall it covers the essentials.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There is only one parameter, and the schema description coverage is 0%. The description adds value by explaining what model_uid is and how to obtain it (via cubism_get_model_uid), going beyond the schema's generic 'Model Uid' title.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool retrieves the complete parameter structure tree, including groups and parameters with Min/Default/Max/KeyValues. This distinguishes it from sibling tools like cubism_get_parameters or cubism_get_parameter_groups that likely return subsets.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not explicitly state when to use this tool versus alternatives. It mentions a prerequisite (model_uid via cubism_get_model_uid) but lacks guidance on when to choose this over siblings like cubism_get_part_structure or cubism_get_deformer_structure.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cubism_get_parameter_valuesA
获取模型当前的参数值。不指定 ids 则返回全部参数。
这是轻量级读取操作,无需 EditBegin/EditEnd 事务。
Args: model_uid: 模型 UID(可通过 cubism_get_model_uid 获取) ids: 可选,要查询的参数 ID 列表。省略则返回所有参数
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | ||
| model_uid | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
无注解,描述承担全责。说明是只读操作、无需事务,未暗示任何副作用,行为透明充分。
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
描述简洁,分为功能说明和参数解释两个段落,无冗余信息,每句都有作用。
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
在有输出模式的情况下,描述不需要说明返回值。涵盖了参数用法和轻量级特性,对于获取参数值的简单工具而言足够完整。
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
模式描述覆盖率为0%,描述对每个参数提供了含义:model_uid通过cubism_get_model_uid获取,ids可选且解释省略时的行为,增加了模式未提供的价值。
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
描述明确使用动词'获取'和资源'参数值',清晰表达功能。与兄弟工具cubism_set_parameter_values和cubism_clear_parameter_values区分开,指明不指定ids则返回全部参数。
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
明确说明是轻量级读取操作,无需EditBegin/EditEnd事务,提供了使用上下文。虽未明确排除替代方案,但已足够指导何时使用。
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cubism_get_part_structureB
获取模型的部件结构树(含 ArtMesh/WarpDeformer/RotationDeformer/Part/ArtPath/Glue 类型)
Args: model_uid: 模型 UID
| Name | Required | Description | Default |
|---|---|---|---|
| model_uid | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, and the description does not disclose any behavioral traits beyond the basic function. No mention of read-only nature, auth requirements, or side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is short and front-loaded with the main purpose. It efficiently conveys key information without extraneous content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema, the description is minimally complete. It lists included types but could be more specific about the tree structure or edge cases.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool description briefly explains the single parameter ('model_uid: 模型 UID'), which adds some meaning since the input schema provides no description (0% coverage). However, it lacks depth (e.g., format, examples).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states verb ('获取/get') and resource ('部件结构树/part structure tree'), and lists included types to distinguish from sibling tools like cubism_get_deformer_structure.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Description only explains what the tool does without specifying when to use it vs. alternatives or when not to use it. Usage context is implied but not explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cubism_get_selectedB
获取当前在 Editor 中选中的对象 ID 列表
Args: model_uid: 模型 UID
| Name | Required | Description | Default |
|---|---|---|---|
| model_uid | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description carries the full burden. It discloses that the tool retrieves a list of IDs from the Editor selection, implying a read-only query. However, it does not elaborate on edge cases (e.g., empty selection), permissions, or side effects. It is adequate but not detailed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very concise—two sentences covering purpose and parameter. It is front-loaded with the core action. Every sentence is useful, but the structure could be improved by separating the parameter description more clearly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the existence of an output schema (not shown), the description need not detail return values. However, it lacks usage examples, error handling notes, or contextual cues for the Editor state. It is minimally complete for a simple getter but leaves gaps for confident invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description adds minimal explanation for the parameter 'model_uid' (Chinese: '模型 UID'). This provides a basic semantic cue beyond the schema's title, but it does not specify the UID's source or format. The added value is marginal.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it gets the list of object IDs currently selected in the Editor. The verb '获取' (get) and resource 'selected object IDs' are specific. Among siblings, it uniquely targets the selection state, differentiating it from other getters.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. There is no mention of prerequisites, context, or when-not-to-use scenarios. The description simply states functionality without comparative or contextual advice.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cubism_set_parameter_valuesA
设置模型的参数值。轻量级写入,无需 EditBegin/EditEnd 事务。
参数通过临时缓冲区生效,物理编辑器/动画模型中可能有延迟。 使用 ClearParameterValues 可显式清除临时缓存。
Args: model_uid: 模型 UID parameters: [{Id: 参数ID, Value: 数值}] 数组,例如 [{"Id":"ParamAngleX","Value":0.5}]
| Name | Required | Description | Default |
|---|---|---|---|
| model_uid | Yes | ||
| parameters | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, but description fully compensates by disclosing buffered writes, delay in physics/animation models, and the clear behavior. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Front-loaded with purpose, then usage details. Each sentence adds value. Could be slightly more concise, but the example is helpful.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers input, behavior, and usage. Output is not described, but an output schema exists. For a mutation tool, this is adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Despite 0% schema coverage, description explains both parameters clearly: model_uid as string, parameters as array of objects with Id and Value, and provides an example. This adds significant meaning beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the verb (设置) and resource (参数值 of a model). Mentions lightweight write without EditBegin/EditEnd transactions, which distinguishes it from cubism_edit tools. However, it could explicitly name alternatives for clarity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides context: lightweight write, no transaction needed, temporary buffer with possible delay, and suggests ClearParameterValues for clearing. Lacks explicit when-not-to-use but sufficient for agent to choose correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cubism_statusA
检查与 Cubism Editor 的连接及授权状态。未连接或未授权时会返回具体指引。
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses return of specific guidance on failure. But no description of success behavior (e.g., returns connection status). No annotations provide additional context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, perfectly concise, front-loaded with purpose. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple zero-parameter tool with output schema, description covers purpose and failure guidance. Minor gap: success return not described, but output schema may cover it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters, so schema coverage is 100%. Description does not add param info, but none needed. Baseline for zero params is 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the tool checks connection and authorization status with Cubism Editor. The verb '检查' and resource '连接及授权状态' are specific. Sibling tools do not mention connection/auth, so it's distinct.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit when-to-use or alternatives. However, from sibling list, it's the only tool for this purpose, so usage is implied. No guidance on when not to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool targets a distinct aspect of Cubism Editor interaction, from connection status to model structure, parameter manipulation, editing actions, and selection. There is no overlap; even similar tools like get_parameter_values and get_parameters differ in depth of information.
All tools follow a consistent 'cubism_<verb>_<noun>' pattern using snake_case, such as cubism_get_model_uid, cubism_set_parameter_values, and cubism_edit_batch. This makes the tool set predictable and easy to navigate.
With 17 tools, the set is slightly above the typical well-scoped range (3-15), but each tool addresses a specific need in Cubism model editing, and the count is justified by the complexity of the domain.
The tool set covers all essential operations for external editing: status, document management, parameter get/set/clear, parameter metadata, model structure (parts, deformers, objects), editing (single and batch), and selection. No obvious gaps remain for the stated purpose.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Run your website's AI support agent from Claude, Cursor or any MCP client. Manage the knowledge base, edit agent instructions, read conversations and leads, reply live to visitors, and check plan usage. 54 tools, OAuth sign-in, no API key. Free with every Asyntai account: https://asyntai.com/documentation/mcp/
Your org's AI agents, tasks, runs, search, and brain files as MCP tools and resources.
Generate game-ready 3D models, textures, and audio from natural language, over MCP.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceEnables AI assistants to directly control the Cocos Creator 3.8.x editor via MCP protocol, providing over 130 tools for scene, node, component, asset, and project operations.3039MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to control a Live2D desktop pet's expressions and actions via MCP protocol.MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI assistants to control a desktop virtual character (VRM) by playing animations, showing/hiding the character, and checking runtime status through the MCP protocol.479,6752MIT
- AlicenseNot gradedqualityAmaintenanceEnables AI assistants to control Blockbench projects via MCP, allowing them to create and delete cubes and inspect model structure. Provides tools for project info, element listing, and cube manipulation.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nana7chi/CubismExternalEditMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server