Skip to main content
Glama

addWall

沿路径添加墙体

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNo
nameNo
outlineNo
materialNo材质
positionsYes
outlineColorNo
maximumHeightsNo
minimumHeightsNo

TDQS

C2.6/5.0
Behavior2/5

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

The description does not disclose any behavioral traits beyond the basic 'add' operation. It does not mention side effects like entity creation, persistence, or whether it is undoable. Annotations are all false, providing no safety hints, and the description adds no additional context such as constraints on positions or how the wall is rendered.

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?

The description is a single, compact phrase with no redundant words. It is front-loaded and easy to read, earning a high score for conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With 8 parameters, no output schema, and a one-line description, the agent lacks vital context about the tool's functionality, return value, relationship to other tools, and usage scenarios. The description is too brief to cover the tool's complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 13% (only 'material' has a description). The tool description itself does not mention any parameters, leaving 7 parameters completely unexplained. This is insufficient for an agent to know how to construct the required 'positions' array or interpret optional fields like 'maximumHeights'.

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 '沿路径添加墙体' translates to 'Add wall along path', which specifies a verb ('add'), a resource ('wall'), and a key constraint ('along path'). This clearly distinguishes it from general 'add' tools like addBox or addMarker, though it could be confused with addCorridor. Overall, it conveys the basic purpose effectively.

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?

The description provides no information about when to use this tool versus alternatives such as addPolyline or addCorridor. There are no stated prerequisites, exclusions, or selection criteria. The agent is left without guidance on choosing this tool over siblings.

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

C2.9/5.0
Disambiguation3/5

Multiple tools share conceptual boundaries (e.g., addMarker vs addBillboard vs addLabel, addPolyline vs addCorridor vs addWall, flyTo vs setView), though descriptions clarify most cases. The overlap is notable given the large tool count.

Naming Consistency4/5

All tools use lowerCamelCase with a consistent verb-first pattern (add*, load*, set*, remove*, update*). Some generic verbs like control and update are reused, but the naming is predictable and readable.

Tool Count2/5

43 tools is well beyond the recommended range. Many add* functions for different primitive types could be consolidated into one entity-creation tool, reducing bloat and cognitive load without sacrificing capability.

Completeness4/5

The tool set offers strong coverage across entities, layers, camera controls, and animations. Minor gaps include lack of entity information retrieval and direct geometry re-editing, but core workflows are well supported.

Resources