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

# Integrations

Manage protocol integrations for your vault. Integrations must be enabled before using protocol-specific commands.

For more information on available integrations, see [Integrations](/v1/platform/integrations).

## List Enabled Integrations

List all enabled integration programs and protocols for the active vault.

```bash theme={null}
glam-cli integration list
```

## Enable Protocols

Enable one or more protocols by name.

* `protocols...`: Space-separated list of protocol names

Available protocols include:

* `SplToken` - SPL token transfers
* `JupiterSwap` - Jupiter swap
* `KaminoLend` - Kamino lending
* `KaminoVaults` - Kamino vaults
* `KaminoFarms` - Kamino farms
* `CCTP` - Cross-chain token bridge

```bash theme={null}
glam-cli integration enable <protocols...> [--yes]
```

**Example:** Enable Jupiter swap and Kamino lending:

```bash theme={null}
glam-cli integration enable JupiterSwap KaminoLend
```

## Disable Protocols

Disable one or more protocols by name.

```bash theme={null}
glam-cli integration disable <protocols...> [--yes]
```

## Disable All Protocols

Disable all protocols from a specific integration program.

* `integration_program`: The integration program ID

```bash theme={null}
glam-cli integration disable-all <integration_program> [--yes]
```
