Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FRIDA_DEFAULT_DEVICE | No | Environment variable for setting the default Frida device | |
| FRIDA_DEFAULT_REMOTE | No | Environment variable for setting the default remote Frida endpoint | |
| FRIDA_DEVICE_FALLBACKS | No | Environment variable for controlling automatic device discovery fallback order |
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| enumerate_processes | List all processes running on the system. |
| enumerate_devices | List all devices connected to the system. |
| configure_remote_device | Connect to a remote Frida server and make it available for future requests. |
| get_device | Get a device by its ID. |
| get_usb_device | Get the USB device connected to the system. |
| get_local_device | Get the local device. |
| get_process_by_name | Find a process by name. |
| attach_to_process | Attach to a process by ID. |
| spawn_process | Spawn a program. |
| resume_process | Resume a process by ID. |
| kill_process | Kill a process by ID. |
| create_interactive_session | Create an interactive REPL-like session with a process. |
| execute_in_session | Execute JavaScript code within an existing interactive Frida session. |
| get_session_messages | Retrieve and clear messages sent by persistent scripts in a session. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| get_version | Get the Frida version. |
| get_processes_resource | Get a list of processes from the currently selected default device as a readable string. |
| get_devices_resource | Get a list of all devices as a readable string. |