get_session_messages
Retrieve and clear messages sent by persistent scripts in a Frida MCP session for runtime analysis and debugging purposes.
Instructions
Retrieve and clear messages sent by persistent scripts in a session.
Returns:
A list of messages captured since the last call, or an error if the session is not found.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
session_id | Yes | The ID of the session to retrieve messages from. |
Input Schema (JSON Schema)
{
"properties": {
"session_id": {
"description": "The ID of the session to retrieve messages from.",
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id"
],
"type": "object"
}