Skip to main content
Glama
playcanvas

PlayCanvas Editor MCP Server

Official
by playcanvas

list_engine_versions

Read-only

List available engine channels/versions the Editor can launch or build with, plus the default. Use before launch or build to pick a version, pin a release, or reproduce a release-candidate bug.

Instructions

List the engine channels and versions the connected Editor can launch and build with, plus the version a default launch would use. Returns { available: [{ channel, version }], launchDefault: { channel, version, source } } where source is launch-option (the Launch button's "Use Release Candidate"), session-setting or current. Use it before launch_start / create_build when a specific engine version matters, e.g. to reproduce a bug on the release candidate or pin a build to the current release.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.7.1

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=false, so safety is covered. The description goes further by spelling out the return shape and decoding the 'source' enum values (launch-option, session-setting, current), which is genuinely useful context an agent can't get from annotations.

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?

Two sentences, front-loaded with purpose then usage. The inline return-type notation is dense but justified because no output schema exists; every clause earns its place.

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?

With no output schema and no parameters, the description carries the full burden and discharges it by documenting the exact return structure and the meaning of each field. Nothing needed to call or interpret the tool is missing.

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

Parameters4/5

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

Zero parameters, so the baseline is 4. There is nothing to disambiguate, and the description appropriately focuses on output semantics instead.

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?

States a specific verb (list) and resource (engine channels/versions) with clear scope: what the connected Editor can launch and build with. An agent can immediately distinguish it from launch_start/create_build, which it names.

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?

Explicitly says to use it before launch_start/create_build 'when a specific engine version matters,' and gives concrete conditions (reproduce a bug on the release candidate, pin a build to the current release). The alternative and the selecting condition are both stated.

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

Deploy Server

Other Tools