> ## Documentation Index
> Fetch the complete documentation index at: https://docs.komodo.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Connecting to Machines

After you have launched a machine, you can connect to them through a Jupyter notebook, VSCode, or SSH.

<Tip>To see the machines you have running from the CLI, just run `komo machine list`</Tip>

## Connecting through Jupyter Notebooks

If you launched a machine with a notebook, you can open it by simply finding your machine on the dashboard and clicking on the 'Open Notebook' button.
Alternatively, you can open it with the CLI:

```bash theme={null}
komo machine notebook <machine-name>
```

## Connecting through VSCode

<Note>This requires that you install the [VSCode CLI](https://code.visualstudio.com/docs/editor/command-line)</Note>

You can also open a machine inside VSCode:

```bash theme={null}
komo machine vscode <machine-name>
```

## Connecting over SSH

To connect to a machine over SSH, simply run:

```bash theme={null}
komo machine ssh <machine-name>
```
