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

# Account Commands

> CLI reference for account management, SSH keys, and preferences

View and manage your TensorPool account with the `tp me` command and its subcommands.

## tp me

View your account information and usage.

```bash theme={null}
tp me
```

This command displays:

* Account details
* Current usage statistics
* Billing information
* Organization membership (if applicable)

## tp me sshkey

Manage the SSH keys associated with your account. Keys saved here are automatically available when creating clusters, so you don't need to pass `-i` each time.

### tp me sshkey add

Add an SSH public key to your account.

```bash theme={null}
tp me sshkey add <key_path> [--name NAME]
```

| Argument      | Description                                               |
| ------------- | --------------------------------------------------------- |
| `key_path`    | Path to your SSH public key file                          |
| `--name NAME` | Optional name for the key (to help you identify it later) |

#### Examples

Add a key:

```bash theme={null}
tp me sshkey add ~/.ssh/id_ed25519.pub
```

Add a key with a name:

```bash theme={null}
tp me sshkey add ~/.ssh/id_ed25519.pub --name "work laptop"
```

### tp me sshkey list

List the SSH keys on your account. Alias: `tp me sshkey ls`.

```bash theme={null}
tp me sshkey list [--org]
```

| Option                    | Description                            |
| ------------------------- | -------------------------------------- |
| `--org`, `--organization` | List all SSH keys in your organization |

#### Examples

List your keys:

```bash theme={null}
tp me sshkey list
```

List all keys in your organization:

```bash theme={null}
tp me sshkey ls --org
```

### tp me sshkey remove

Remove an SSH key from your account. Alias: `tp me sshkey rm`.

```bash theme={null}
tp me sshkey remove <key_id>
```

| Argument | Description                                                          |
| -------- | -------------------------------------------------------------------- |
| `key_id` | The ID of the SSH key to remove (find this with `tp me sshkey list`) |

#### Example

```bash theme={null}
tp me sshkey remove k-abc123
```

## tp me preferences

View your account preferences.

```bash theme={null}
tp me preferences
```

## Next Steps

* Learn how to [SSH into instances](/cli/ssh-commands)
* View the [dashboard](https://tensorpool.dev/dashboard/)
* Learn about [cluster management](/features/clusters)
