frida_android_launch
Launch the Frida server on an Android device to enable HTTP traffic inspection and debugging through HTTP Toolkit. Requires prior setup configuration.
Instructions
Launch the Frida server on an Android device. Must run frida_android_setup first.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| proxyPort | Yes | Proxy port | |
| hostId | Yes | Frida host ID |
Implementation Reference
- src/index.ts:239-251 (registration)The tool 'frida_android_launch' is registered here. The handler logic directly calls 'client.activateInterceptor' with the 'launch' action.
server.registerTool( 'frida_android_launch', { title: 'Launch Android Frida Server', description: 'Launch the Frida server on an Android device. Must run frida_android_setup first.', inputSchema: z.object({ proxyPort: z.number().describe('Proxy port'), hostId: z.string().describe('Frida host ID'), }), }, async ({ proxyPort, hostId }) => jsonResult(await client.activateInterceptor('android-frida', proxyPort, { action: 'launch', hostId })) );