dart_io_get_open_file_by_id
Retrieve detailed information about a specific open file using its unique ID in Flutter apps for debugging and analysis, integrated with the Flutter Inspector MCP Server.
Instructions
RPC: Get details of a specific open file by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fileId | Yes | ID of the file to get details for | |
port | No | Port number where the Flutter app is running (defaults to 8181) |
Input Schema (JSON Schema)
{
"properties": {
"fileId": {
"description": "ID of the file to get details for",
"type": "string"
},
"port": {
"description": "Port number where the Flutter app is running (defaults to 8181)",
"type": "number"
}
},
"required": [
"fileId"
],
"type": "object"
}