Frida MCP
Skills
get_device
Get a device by its ID. Args: device_id: The ID of the device to get Returns: Information about the device
kill_process
Kill a process by ID. Args: pid: The ID of the process to kill device_id: Optional device ID Returns: Status information
spawn_process
Spawn a program. Args: program: The program to spawn args: Optional arguments for the program device_id: Optional device ID Returns: Information about the spawned process
get_usb_device
Get the USB device connected to the system. Returns: Information about the USB device
list_processes
List all processes running on the system.
resume_process
Resume a process by ID. Args: pid: The ID of the process to resume device_id: Optional device ID Returns: Status information
attach_to_process
Attach to a process by ID.
enumerate_devices
List all devices connected to the system. Returns: A list of device information dictionaries containing: - id: Device ID - name: Device name - type: Device type
create_simple_hook
Create a simple hook for a process.
execute_in_session
Execute JavaScript code in an interactive session. Args: session_id: The ID of the session to execute in javascript_code: The JavaScript code to execute Returns: The result of the execution
enumerate_processes
List all processes running on the system. Returns: A list of process information dictionaries containing: - pid: Process ID - name: Process name
get_process_by_name
Find a process by name.
create_interactive_session
Create an interactive REPL-like session with a process. This returns a session ID that can be used with execute_in_session to run commands. Args: process_id: The ID of the process to attach to Returns: Information about the created session
Configuration
MCP Server
Connect to MCP Server