functions

作成者: browserbase

サーバーレスのブラウザ自動化をBrowserbaseを使用してクラウド関数としてデプロイします。ユーザーがスケジュールやcronで実行するブラウザ自動化をデプロイしたい場合に使用します…

npx skills add https://github.com/browserbase/skills --skill functions

Browserbase Functions

Deploy serverless browser automation using the official browse CLI.

Prerequisites

Get an API key from: https://browserbase.com/settings

export BROWSERBASE_API_KEY="your_api_key"

Creating a Function Project

1. Initialize

browse functions init my-function
cd my-function

This creates:

my-function/
├── package.json
├── index.ts        # Your function code
└── .env            # Add credentials here

2. Add Credentials to .env

echo "BROWSERBASE_API_KEY=$BROWSERBASE_API_KEY" >> .env

3. Install Dependencies

pnpm install

Function Structure

import { defineFn } from "@browserbasehq/sdk-functions";
import { chromium } from "playwright-core";

defineFn("my-function", async (context) => {
  const { session, params } = context;

  // Connect to browser
  const browser = await chromium.connectOverCDP(session.connectUrl);
  const page = browser.contexts()[0]!.pages()[0]!;

  // Your automation
  await page.goto(params.url || "https://example.com");
  const title = await page.title();

  // Return JSON-serializable result
  return { success: true, title };
});

Key objects:

  • context.session.connectUrl - CDP endpoint to connect Playwright
  • context.params - Input parameters from invocation

Development Workflow

1. Start Dev Server

browse functions dev index.ts

Server runs at http://127.0.0.1:14113

2. Test Locally

curl -X POST http://127.0.0.1:14113/v1/functions/my-function/invoke \
  -H "Content-Type: application/json" \
  -d '{"params": {"url": "https://news.ycombinator.com"}}'

3. Iterate

The dev server auto-reloads on file changes. Use console.log() for debugging - output appears in the terminal.

Deploying

browse functions publish index.ts

Output:

Function published successfully
Build ID: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Function ID: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx

Save the Function ID - you need it to invoke.

Quick Reference

CommandDescription
browse functions init <name>Create new project
browse functions dev <file>Start local dev server
browse functions publish <file>Deploy to Browserbase

For invocation examples, common patterns, and troubleshooting, see REFERENCE.md.

browserbaseのその他のスキル

browser-automation
browserbase
MCPツールを使用してウェブブラウザの操作を自動化します。ユーザーがウェブサイトの閲覧、ウェブページのナビゲーション、ウェブサイトからのデータ抽出、スクリーンショットの取得などを依頼した場合に使用します。
official
functions
browserbase
サーバーレスブラウザ自動化の公式Browserbase Functions CLIを使用したデプロイをガイドします。ユーザーが自動化をデプロイして実行したい場合に使用します…
official
autobrowse
browserbase
自己改善型ブラウザ自動化を自動リサーチループで実現。ブラウジングタスクを反復実行し、トレースを読み取り、ナビゲーションスキルを向上させます…
official
browser
browserbase
ローカルChromeまたはリモートBrowserbaseを使用したブラウザ自動化。保護されたサイト、ボット検出、CAPTCHAに対応。2つのモード:ローカルChrome(デフォルト、設定不要)またはリモートBrowserbase(アンチボットステルス、自動CAPTCHA解決、レジデンシャルプロキシ、セッション永続化)。コアコマンドは、ナビゲーション、ページ検査、操作(クリック、タイプ、入力、選択、ドラッグ)、およびCLIによるセッション管理をカバー。browse snapshotを使用してアクセシビリティツリーを読み取り、信頼性の高い操作のための要素参照を取得。予約...
official
browser-trace
browserbase
任意のブラウザ自動化のDevToolsプロトコルトレース全体(CDPファイアホース、スクリーンショット、DOMダンプ)をキャプチャし、ストリームをページごとに分割して検索可能に…
official
browserbase-cli
browserbase
Use the Browserbase CLI (`bb`) for Browserbase Functions and platform API workflows. Use when the user asks to run `bb`, deploy or invoke functions, manage…
official
company-research
browserbase
販売先企業を発見し、深く調査します。発見にはBrowserbase Search APIを、詳細なエンリッチメントにはPlan→Research→Synthesizeパターンを使用し、スコア付き調査レポートとCSVを出力します。
official
cookie-sync
browserbase
ローカルのChromeからBrowserbaseの永続コンテキストにクッキーを同期し、browse CLIが認証済みサイトにアクセスできるようにします。ユーザーがブラウズしたい場合に使用します…
official