Chrome Debug MCP Server

type

Type text into an input field

Input Schema

NameRequiredDescriptionDefault
delayNoOptional delay between keystrokes (in milliseconds)
selectorYesCSS selector for input field
textYesText to type

Input Schema (JSON Schema)

{ "properties": { "delay": { "description": "Optional delay between keystrokes (in milliseconds)", "type": "number" }, "selector": { "description": "CSS selector for input field", "type": "string" }, "text": { "description": "Text to type", "type": "string" } }, "required": [ "selector", "text" ], "type": "object" }