Flutter Inspector MCP Server

by Arenukvern
Verified

flutter_core_platform_override

RPC: Override the platform for the Flutter app

Input Schema

NameRequiredDescriptionDefault
platformYesPlatform to override to (android, ios, fuchsia, linux, macOS, windows, or null to reset)
portNoPort number where the Flutter app is running (defaults to 8181)

Input Schema (JSON Schema)

{ "properties": { "platform": { "description": "Platform to override to (android, ios, fuchsia, linux, macOS, windows, or null to reset)", "enum": [ "android", "ios", "fuchsia", "linux", "macOS", "windows", null ], "type": "string" }, "port": { "description": "Port number where the Flutter app is running (defaults to 8181)", "type": "number" } }, "required": [ "platform" ], "type": "object" }