get_extension_rpcs
Discover available extension RPCs in a Flutter app by listing all accessible methods. Customize the search by specifying isolate IDs, ports, or raw response formats.
Instructions
Utility: List all available extension RPCs in the Flutter app. This is a helper tool for discovering available methods.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
isRawResponse | No | If true, returns the raw response from the VM service without processing | |
isolateId | No | Optional specific isolate ID to check. If not provided, checks all isolates | |
port | No | Optional: Custom port number if not using default Flutter debug port 8181 |
Input Schema (JSON Schema)
{
"properties": {
"isRawResponse": {
"default": false,
"description": "If true, returns the raw response from the VM service without processing",
"type": "boolean"
},
"isolateId": {
"description": "Optional specific isolate ID to check. If not provided, checks all isolates",
"type": "string"
},
"port": {
"description": "Optional: Custom port number if not using default Flutter debug port 8181",
"type": "number"
}
},
"required": [],
"type": "object"
}