get_device
Retrieve detailed information about a specific mobile or desktop device by its unique ID using Frida MCP server. This tool enables device identification and status checking for dynamic instrumentation and runtime analysis workflows.
Instructions
Get a device by its ID.
Returns:
Information about the device
Input Schema
Name | Required | Description | Default |
---|---|---|---|
device_id | Yes | The ID of the device to get |
Input Schema (JSON Schema)
{
"properties": {
"device_id": {
"description": "The ID of the device to get",
"title": "Device Id",
"type": "string"
}
},
"required": [
"device_id"
],
"type": "object"
}