Skip to main content
Glama

interceptor_android_deactivate

Deactivate network interception on Android devices by removing ADB reverse tunnels and clearing Wi-Fi proxy settings to restore normal connectivity.

Instructions

Remove ADB reverse tunnel and clear Wi-Fi proxy on an Android device.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
target_idYesTarget ID from interceptor_android_activate

Implementation Reference

  • The tool "interceptor_android_deactivate" is defined here, which delegates the deactivation to `interceptorManager.deactivate`.
    server.tool(
      "interceptor_android_deactivate",
      "Remove ADB reverse tunnel and clear Wi-Fi proxy on an Android device.",
      {
        target_id: z.string().describe("Target ID from interceptor_android_activate"),
      },
      async ({ target_id }) => {
        try {
          await interceptorManager.deactivate("android-adb", target_id);
          return {
            content: [{
              type: "text",
              text: JSON.stringify({ status: "success", message: `Android device ${target_id} deactivated.` }),
            }],
          };
        } catch (e) {
          return { content: [{ type: "text", text: JSON.stringify({ status: "error", error: errorToString(e) }) }] };
        }
      },
    );
Install Server

Other Tools

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/yfe404/proxy-mcp'

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