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

# Installation

> Install Klavis SDK or use REST API directly

## SDK Installation

<CodeGroup>
  ```bash Python theme={null}
  pip install klavis
  ```

  ```bash TypeScript theme={null}
  npm install klavis
  ```
</CodeGroup>

## REST API

```bash theme={null}
curl -X POST "https://api.klavis.ai/mcp-server/instance/create" \
  -H "Authorization: Bearer YOUR_KLAVIS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"serverName": "Gmail", "userId": "user123"}'
```
