Captures a screenshot from the Unity Editor Game View and returns it as an image. Reads the Game View's own render texture directly via the Unity Editor API. The image size matches the current Game View resolution. Returns the image directly for visual inspection by the LLM.
unity-mcp-cli run-tool screenshot-game-view --input '{
"nothing": "string_value"
}'
For complex input (multi-line strings, code), save the JSON to a file and use:
unity-mcp-cli run-tool screenshot-game-view --input-file args.jsonOr pipe via stdin (recommended):
unity-mcp-cli run-tool screenshot-game-view --input-file - <<'EOF' {"param": "value"} EOF
If unity-mcp-cli is not found, either install it globally () or use instead.
Read the /unity-initial-setup skill for detailed installation instructions.
npm install -g unity-mcp-clinpx unity-mcp-cli| Name | Type | Required | Description |
|---|---|---|---|
nothing | string | No |
{
"type": "object",
"properties": {
"nothing": {
"type": "string"
}
}
}
This tool does not return structured output.