skyvern

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Skyvern Browser Automation

Skyvern 浏览器自动化

Control a real browser with natural language. Skyvern uses Vision LLMs and computer vision instead of brittle XPath/DOM selectors, so automations survive UI changes.
使用自然语言控制真实浏览器。Skyvern 使用视觉大语言模型(Vision LLMs)和计算机视觉技术,而非脆弱的XPath/DOM选择器,因此自动化流程能够适应UI变更。

Setup

安装配置

Cloud (recommended):
bash
pip install skyvern
skyvern setup  # interactive client selection
Or add the MCP server directly to your Claude Code config:
json
{
  "mcpServers": {
    "skyvern": {
      "type": "streamable-http",
      "url": "https://api.skyvern.com/mcp/",
      "headers": {
        "x-api-key": "YOUR_SKYVERN_API_KEY"
      }
    }
  }
}
Get your API key at app.skyvern.com.
云端(推荐):
bash
pip install skyvern
skyvern setup  # 交互式客户端选择
或者直接将MCP服务器添加到你的Claude Code配置中:
json
{
  "mcpServers": {
    "skyvern": {
      "type": "streamable-http",
      "url": "https://api.skyvern.com/mcp/",
      "headers": {
        "x-api-key": "YOUR_SKYVERN_API_KEY"
      }
    }
  }
}
前往app.skyvern.com获取你的API密钥。

Key Features

核心功能

  • Natural language actions — click, type, scroll, hover, drag-and-drop via plain English
  • Structured extraction — extract data with JSON schema validation and screenshot reasoning
  • Secure login — credential vault with 2FA/TOTP support (QR, email, SMS)
  • Reusable workflows — 23 block types, parameterized runs, cached scripts (10-100x faster on repeat)
  • 75+ MCP tools — session management, multi-tab, iframes, network inspection, HAR recording
  • Works with — Claude Desktop, Claude Code, Cursor, Windsurf, Codex
  • 自然语言操作 — 通过简单英语实现点击、输入、滚动、悬停、拖放操作
  • 结构化提取 — 结合JSON Schema验证和截图分析提取数据
  • 安全登录 — 支持2FA/TOTP的凭证保险箱(含二维码、邮件、短信验证)
  • 可复用工作流 — 23种模块类型、参数化运行、缓存脚本(重复运行速度提升10-100倍)
  • 75+ MCP工具 — 会话管理、多标签页、iframe、网络检查、HAR记录
  • 兼容平台 — Claude Desktop、Claude Code、Cursor、Windsurf、Codex

Usage

使用示例

"Navigate to example.com and extract all product prices"
"Log into my account and download the latest invoice"
"Fill out the shipping form and click Submit"
"Take a screenshot of the current page"
"Build a workflow that runs this every Monday"
"导航至example.com并提取所有产品价格"
"登录我的账户并下载最新发票"
"填写配送表单并点击提交"
"截取当前页面的截图"
"构建一个每周一自动运行该任务的工作流"

Links

相关链接