Connect Claude Code
Three steps. The first is signing in (so files are saved under your account).
- Sign in. Sign in with Google — your files are private to you by default.
- Connect an agent. Open your drive → click Connect agent. Name it (e.g. "My laptop") and you'll get a single URL with credentials embedded.
- Paste it into Claude Code. Drop the link into chat. Claude fetches it, learns to use the drive as a memory bank, and saves anything you ask for as a real HTML file in your account.
For power users
If you want to call the API directly, the agent link contains everything an HTTP client needs. Inside, find the bearer token and use it with:
curl -X POST https://html.app.teenyapp.com/api/save \
-H 'Authorization: Bearer agt_…' \
-H 'Content-Type: application/json' \
-d '{"slug":"my-doc","title":"My doc","html":"<!doctype html><h1>hi</h1>"}'