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

# Setup Cloudglue

> Learn how to install and configure Cloudglue SDKs.

### Installing Cloudglue

Follow the appropriate SDK installation instructions for your programming language below. Currently official [Node](/sdks/javascript) and [Python](/sdks/python) packages are available for Cloudglue.

<Tabs>
  <Tab title="Node" value="node">
    `bash npm install @cloudglue/cloudglue-js `
  </Tab>

  <Tab title="Python" value="python">
    `bash pip install cloudglue `
  </Tab>
</Tabs>

### Usage

To start using Cloudglue's features, you'll need to authenticate your requests with an API key. Here's how to set it up:

1. Get an API key from [cloudglue.dev](https://app.cloudglue.dev)
2. Set the API key as an environment variable named `CLOUDGLUE_API_KEY` or pass the api key in as a parameter to the `Cloudglue` class constructor.

Here's an example of how to create a Cloudglue client:

<CodeGroup>
  ```typescript JS SDK theme={null}
  import { Cloudglue } from '@cloudglue/cloudglue-js';

  const client = new Cloudglue({
  apiKey: 'cg-your-api-key-here',
  });

  ```

  ```python Python SDK theme={null}
  from cloudglue import Cloudglue

  client = Cloudglue(api_key='cg-your-api-key-here')
  ```
</CodeGroup>
