> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.pivotal.app/llms.txt.
> For full documentation content, see https://docs.pivotal.app/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.pivotal.app/_mcp/server.

# Local tunneling

Three ways to expose a local receiver. Pick whichever you already have a habit with.

NGROK

```bash
ngrok http 8787
# Forwarding  https://aurora-1234.ngrok.app -> http://localhost:8787
```

Free tier rotates the subdomain on every restart. Paid plans pin a custom domain.

CLOUDFLARE TUNNEL

```bash
cloudflared tunnel --url http://localhost:8787
```

No account required for ephemeral tunnels. Persistent tunnels need a Cloudflare account and a domain.

TAILSCALE FUNNEL

```bash
tailscale funnel 8787
```

Works if your device is already on Tailscale. URL persists across restarts.

REGISTERING THE URL

Copy the HTTPS URL and paste it into **Admin → Developer → Webhooks → Add endpoint**. Toggle **Test mode** on so live deliveries don't hit your laptop.