Unity Editor MCP Server

run_tests

Runs Unity's Test Runner tests

Input Schema

NameRequiredDescriptionDefault
testFilterNoOptional test filter (e.g. specific test name or namespace)
testModeNoThe test mode to run (EditMode, PlayMode, or All)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "testFilter": { "description": "Optional test filter (e.g. specific test name or namespace)", "type": "string" }, "testMode": { "description": "The test mode to run (EditMode, PlayMode, or All)", "type": "string" } }, "type": "object" }