Skip to main content
Glama

Robot Actions — Remote Device Control

android_devtools_mock_add

Add (or update in place, when id matches an existing route) a mock/abort rule for Chrome/WebView requests on this device. mode "mock" (default) serves the given status/headers/body without the request leaving the device; mode "abort" fails it so the page sees a network error. Routes apply immediately and survive navigation. WEB CONTENT ONLY: this intercepts requests made by browser/WebView pages. Requests made by native app code are NOT intercepted and never will be by this tool. Nothing device-wide is changed and no certificate is installed — the effect is scoped to the page. For requests made by native app code use android_traffic_mock_add instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoRoute id to update in place; omit to auto-generate a new one
bodyNoResponse body for mode "mock" (text, or base64 when bodyEncoding is "base64")
modeNo"mock" serves a canned response (default); "abort" fails the request
udidYesDevice id (Android serial or iOS UDID)
methodNoOptional HTTP method filter (e.g. "GET"/"POST"); matches any method when omitted
pageIdNoPin routing to a specific page id (from the *_list_pages tool). Omit to follow the active page automatically across navigations and new tabs — recommended.
socketNoAbstract unix socket name (default: chrome_devtools_remote)
statusNoHTTP status to serve for mode "mock" (default 200)
delayMsNoLatency injected before responding/failing, in ms (clamped to 60s)
enabledNoWhether the route is active (default true) — disabled routes are kept but ignored
headersNoResponse headers for mode "mock", as {headerName: value} — e.g. {"content-type": "application/json"}. On iOS a `charset` in content-type is NOT applied to the response: an HTML body with non-ASCII characters must declare it in the document (e.g. <meta charset="utf-8">) or it will be decoded with the default encoding and render as mojibake.
matchUrlYesURL pattern to match against the request's full URL
matchTypeNoHow matchUrl is interpreted against the request URL (default "contains")
bodyEncodingNoEncoding of `body` (default "text")

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / properties / headers / description
      Previous value: -"Response headers for mode \"mock\", as {headerName: value} — e.g. {\"content-type\": \"application/json\"}"New value: +"Response headers for mode \"mock\", as {headerName: value} — e.g. {\"content-type\": \"application/json\"}. On iOS a `charset` in content-type is NOT applied to the response: an HTML body with non-ASCII characters must declare it in the document (e.g. <meta charset=\"utf-8\">) or it will be decoded with the default encoding and render as mojibake."
  2. Added

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden and does so thoroughly. It discloses mode effects (mock serves without leaving device, abort fails request), scope (web only, native untouched), that nothing device-wide changes and no certificate is installed, and that routes apply immediately and survive navigation. It also flags an iOS-specific charset caveat. This is exemplary transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured and front-loaded: it opens with the core action and mode semantics, then scoping, then alternatives. Every sentence adds necessary context (e.g., immediate application, persistence, iOS note). Despite its length, there is no fluff; it reads efficiently and covers the essential points without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (14 parameters, no output schema) and rich schema descriptions, the description covers all key aspects: purpose, modes, scope, persistence, and routing to alternatives. It also includes edge-case warnings (iOS charset) that are not in the schema. Nothing an agent needs to decide whether and how to call it is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds value beyond the schema by explaining the behavioral impact of the 'mode' parameter (e.g., 'without the request leaving the device') and the scoping implications of 'pageId'. It also clarifies the difference between mock and abort in practical terms, which aids parameter understanding. However, it doesn't elaborate on all parameters individually, so a 4 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('Add (or update in place) a mock/abort rule') with a clear resource ('Chrome/WebView requests on this device'). It distinguishes itself from the sibling android_traffic_mock_add by explicitly limiting scope to web content. The purpose is unambiguous and separates it from similar tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to use this tool (web content) and when not (native app code), and names the alternative (android_traffic_mock_add). It also clarifies that routes apply immediately and survive navigation, giving clear context on expected behavior. No ambiguity about selection criteria.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources