resume_process
Resume a suspended process by its process ID using Frida MCP server, enabling continued execution of mobile and desktop applications for runtime analysis.
Instructions
Resume a process by ID.
Returns:
Status information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
device_id | No | Optional ID of the device where the process is running. Uses smart selection when omitted. | |
pid | Yes | The ID of the process to resume. |
Input Schema (JSON Schema)
{
"properties": {
"device_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional ID of the device where the process is running. Uses smart selection when omitted.",
"title": "Device Id"
},
"pid": {
"description": "The ID of the process to resume.",
"title": "Pid",
"type": "integer"
}
},
"required": [
"pid"
],
"type": "object"
}