Skip to main content
Glama

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
NameRequiredDescriptionDefault
proxyPortYesProxy port
hostIdYesFrida 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 }))
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/fdciabdul/httptoolkit-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server