View as Markdown
Yutori icon

Yutori ACTION

Run Browsing Task

Use Yutori's cloud browser agent to navigate a website, fill forms, extract data, or complete any multi-step task — just describe it in plain English. Returns a task ID immediately; provide a Webhook URL to receive the full result the moment the task finishes. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Yutori account once, then configure and run Run Browsing Task from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "yutori-run-browsing-task",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    yutori: { authProvisionId: "apn_xxxxxxx" },
    task: "Task",
    startUrl: "Start URL",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Run Browsing Task inputs
Property Type Description
task Task string
Natural language description of what to do on the website, e.g. Find the cheapest flight from NYC to LA next Friday
Required
startUrl Start URL string
The URL to start browsing from, e.g. https://google.com/flights
Required
maxSteps Max Steps integer
Maximum number of browser actions the agent can take (1–100)
Optional
webhookUrl Webhook URL string
URL to receive the result when the task completes. Recommended for reliable delivery — Yutori will POST the result to this URL.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
yutori-run-browsing-task
Version
0.0.2
App
Yutori
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes