v1.0 Available
Open SourceSecure Tunnels
For AI Agents.
Expose your localhost to the internet with one command. Built for developers and AI agents that need to test webhooks, share demos, and access local services remotely.
>
curl -fsSL https://liveport.dev/cli | shliveport — bash
01_
Instant Tunnels
Bypass firewalls and NATs with a single command. No router configuration required. Generated SSL certificates included automatically.
02_
Bridge Keys
Secure your tunnels with cryptographic keys. Control access, expiration, and rate limits per key. Designed for zero-trust environments.
03_
Agent SDK
First-class support for AI agents. Programmatically control tunnels and wait for connections in your test suites via TypeScript SDK.
Programmatic Control
SDK_USAGE.TS
import { LivePortAgent } from "@liveport/agent-sdk"; const agent = new LivePortAgent({ key: "lpk_production_key" }); // Wait for tunnel to be established const tunnel = await agent.waitForTunnel(); console.log(`Target acquired: ${tunnel.url}`);