Tinyfish Browser
/install tinyfish-browser
TinyFish Browser
Create a remote Chromium browser session. Returns a session_id, a cdp_url for driving the browser over the DevTools Protocol, and an authenticated base_url for polling session state.
Requires: TINYFISH_API_KEY environment variable.
Pre-flight Check (REQUIRED)
Before calling the API, verify the key is present:
[ -n "$TINYFISH_API_KEY" ] && echo "TINYFISH_API_KEY is set" || echo "TINYFISH_API_KEY is NOT set"
If the key is not set, stop and ask the user to add it. Get one at \x3Chttps://agent.tinyfish.ai/api-keys>. Do NOT fall back to other browser tools.
Create a Session
curl -X POST "https://api.browser.tinyfish.ai" \
-H "X-API-Key: $TINYFISH_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "url": "https://example.com" }'
Helper Script
scripts/browser.sh \x3Curl> wraps the curl call:
scripts/browser.sh https://example.com
Response Shape
{
"session_id": "sess_abc123",
"cdp_url": "wss://browser.tinyfish.ai/devtools/browser/…",
"base_url": "https://api.browser.tinyfish.ai/sessions/sess_abc123"
}
Using the Session
cdp_urlis a DevTools Protocol websocket — connect with Playwright/Puppeteer/chrome-remote-interface to drive the page.base_urlis an authenticated polling endpoint (requires theX-API-Keyheader). It is NOT browsable in a normal web view.
Session Lifecycle
Sessions auto-close after ~1 hour of idleness. There is no explicit terminate endpoint — avoid creating one session per user action; reuse sessions keyed by target URL when possible.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install tinyfish-browser - After installation, invoke the skill by name or use
/tinyfish-browser - Provide required inputs per the skill's parameter spec and get structured output
What is Tinyfish Browser?
Spin up a remote browser session via the TinyFish Browser API and get a CDP URL for driving it. Use when you need an automatable Chromium session (Playwright... It is an AI Agent Skill for Claude Code / OpenClaw, with 103 downloads so far.
How do I install Tinyfish Browser?
Run "/install tinyfish-browser" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Tinyfish Browser free?
Yes, Tinyfish Browser is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Tinyfish Browser support?
Tinyfish Browser is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Tinyfish Browser?
It is built and maintained by Val Alexander (@bunsdev); the current version is v1.0.0.