Skip to main content
Glama

cocos_list_tools

Retrieve current tools from the Cocos Creator MCP server to verify available capabilities and address stale catalog issues by filtering tools by name or category.

Instructions

List the tools actually registered on this MCP server.

Addresses stale-catalog scenarios where a subagent's MCP session can't reliably see tools registered after the session started — asking the server directly is the ground truth. Returns {count, tools: [{name, category, summary}, ...]} where summary is the first non-empty line of the docstring.

Filters (all optional):

  • name_contains — case-insensitive substring on the tool name. Pass "joint" to list every Joint2D helper, "scaffold" for the 9 gameplay scaffolds.

  • category — coarse bucket inferred from the name prefix: uuid / project / asset / scene / physics2d / physics3d / rendering / ui / media / build / interact / scaffold / composite / meta / other. Inference is heuristic — a tool shows up in exactly one bucket.

Empty filters return every tool. Use this whenever you need to double-check whether a capability is already baked in before implementing it manually.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
name_containsNo
categoryNo
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses key behavioral traits: it's a read-only operation (implied by 'list'), returns structured data with count and tools array, explains the 'summary' field derivation, describes filtering behavior, and states that empty filters return all tools. It doesn't mention rate limits, authentication needs, or pagination, but covers the core behavior well for a listing tool.

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 appropriately sized and well-structured. It starts with the core purpose, addresses the specific problem scenario, describes the return format, explains parameters with examples, and ends with usage guidance. While somewhat detailed, every sentence adds value. It could be slightly more concise but remains efficient.

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

Completeness5/5

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

Given the tool's moderate complexity (2 parameters, no output schema, no annotations), the description is complete. It explains the tool's purpose, when to use it, behavioral details, parameter semantics, and return format. The lack of output schema is compensated by describing the return structure. For a listing tool with filtering, this provides sufficient context for an agent to use it correctly.

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

Parameters5/5

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

The schema description coverage is 0%, so the description must fully compensate. It provides detailed semantics for both parameters: 'name_contains' is explained as 'case-insensitive substring on the tool name' with concrete examples ('joint', 'scaffold'), and 'category' is described as 'coarse bucket inferred from the name prefix' with a complete list of possible values. The description also clarifies that both are optional and that empty filters return every tool.

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 tool's purpose: 'List the tools actually registered on this MCP server.' It specifies the exact resource (tools) and verb (list), and distinguishes itself from siblings by addressing stale-catalog scenarios and providing ground truth about server capabilities.

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

Usage Guidelines5/5

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

The description provides explicit guidance on when to use this tool: 'Addresses stale-catalog scenarios where a subagent's MCP session can't reliably see tools registered after the session started' and 'Use this whenever you need to double-check whether a capability is already baked in before implementing it manually.' It also explains the alternative (asking the server directly vs. relying on session state).

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

Install Server

Other Tools

Latest Blog Posts

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/chenShengBiao/cocos-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server