Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/content/cloud-offer/getting-started.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { Callout } from 'nextra/components'

---
title: Getting started
description: Start using remote browsers easily with Lightpanda cloud.
Expand Down Expand Up @@ -38,6 +40,11 @@ await browser.close();

You have access to Lightpanda and Chromium browsers.

<Callout type="info" emoji="ℹ️">
Depending on your location, you can connect using the url
`wss://euwest.cloud.lightpanda.io/ws` or `wss//uswest.cloud.lightpanda.io/ws`.
</Callout>

## Sign in to the dashboard

You can access your dashboard on [https://console.lightpanda.io](https://console.lightpanda.io).
Expand Down
10 changes: 9 additions & 1 deletion src/content/cloud-offer/tools/cdp.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,21 @@ Most of existing tools to control a browser like Puppeteer, Playwright or chrome

## Usage

You can connect to the CDP using the url `wss://euwest.cloud.lightpanda.io/ws`.
Depending on your location, you can connect to the CDP using the url
`wss://euwest.cloud.lightpanda.io/ws` or `wss//uswest.cloud.lightpanda.io/ws`.

You have to add your token as query string parameter: `token=YOUR_TOKEN`.

```text copy
// Server in west europe
wss://euwest.cloud.lightpanda.io/ws?token=TOKEN
```

```text copy
// Server in west US
wss://uswest.cloud.lightpanda.io/ws?token=TOKEN
```

### Options

The CDP url takes options to configure the browser as query string parameters.
Expand Down
3 changes: 2 additions & 1 deletion src/content/cloud-offer/tools/mcp.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ easily control Lightpanda browser with your AI applications.

The Lightpanda MCP service supports only [SSE](https://modelcontextprotocol.io/specification/2024-11-05/basic/transports#http-with-sse) transport.

Use the url `https://euwest.cloud.lightpanda.io/mcp/sse` to connect.
Depending on your location, you can connect to the MCP using the url
`wss://euwest.cloud.lightpanda.io/mcp/sse` or `wss//uswest.cloud.lightpanda.io/mcp/sse`.

### Authentication

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { Callout } from 'nextra/components'

---
title: Go to production with Lightpanda cloud
description: Learn how to use a remote Lightpanda browser
Expand Down Expand Up @@ -38,6 +40,11 @@ const playwrightopts = {
</Tabs.Tab>
</Tabs>

<Callout type="info" emoji="ℹ️">
Depending on your location, you can connect using the url
`wss://euwest.cloud.lightpanda.io/ws` or `wss//uswest.cloud.lightpanda.io/ws`.
</Callout>

## Clean up local-only lines

You no longer need to start a local browser process because you are using the
Expand Down