# ls (/docs/cli/dev/ls)

> For the complete Prisma documentation index, see [llms.txt](https://www.prisma.io/docs/llms.txt). A markdown version of any docs page is available by appending `.md` to its URL.

List available local Prisma Postgres servers

Location: CLI > dev > ls

The `prisma dev ls` command lists all available [local Prisma Postgres](https://www.prisma.io/docs/postgres/database/local-development) instances on your system.

## Usage [#usage]

```bash
prisma dev ls [options]
```

## Options [#options]

| Option    | Description          | Default |
| --------- | -------------------- | ------- |
| `--debug` | Enable debug logging | `false` |

## Examples [#examples]

### List all servers [#list-all-servers]

  

#### bun

```bash
bunx prisma dev ls
```

#### pnpm

```bash
pnpm dlx prisma dev ls
```

#### yarn

```bash
yarn dlx prisma dev ls
```

#### npm

```bash
npx prisma dev ls
```

This shows all instances on your system with their current status and configuration.

## Related pages

- [`rm`](https://www.prisma.io/docs/cli/dev/rm): Remove local Prisma Postgres servers
- [`start`](https://www.prisma.io/docs/cli/dev/start): Start one or more stopped local Prisma Postgres servers
- [`stop`](https://www.prisma.io/docs/cli/dev/stop): Stop local Prisma Postgres servers