Create captcha task
create_taskSubmit a CAPTCHA solving task to CapMonster Cloud and get a task ID for result polling. Supports inline task or a JSON file for large payloads.
Instructions
Submit a captcha task; returns taskId. Poll with get_task_result.
task must include 'type' and all required fields. Always look up required params at https://docs.capmonster.cloud/docs/captchas/ — do not rely on training data.
For a task holding one or more large base64 blobs (ComplexImageTask with
several images, htmlPageBase64 for Cloudflare cf_clearance/wait_room, or
any other opaque field/combined payload too big to type safely) pass
task_file instead of task: the path to a JSON file, on this machine's
filesystem, containing the exact task object. Write that file with a
script or a browser-side save (never by hand-typing a long base64 literal
into this tool call's own arguments — a single dropped/unclosed quote in
a multi-KB string silently merges what should be separate array elements
into one, which is why this exists: a 9-image ComplexImageTask sent
inline this way became "Image count: 1, but the task supports: 9" even
though the array had 9 entries when written). Provide exactly one of
task or task_file.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task | No | ||
| task_file | No |