Steel MCP Server

Official

type

Type text into an input field specified by its numbered label from the annotated screenshot. Optionally replace existing text first.

Input Schema

NameRequiredDescriptionDefault
labelYesThe label of the input field
replaceTextNoIf true, clears any existing text in the input field before typing the new text.
textYesThe text to type into the input field

Input Schema (JSON Schema)

{ "properties": { "label": { "description": "The label of the input field", "type": "number" }, "replaceText": { "description": "If true, clears any existing text in the input field before typing the new text.", "type": "boolean" }, "text": { "description": "The text to type into the input field", "type": "string" } }, "required": [ "label", "text" ], "type": "object" }