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

# Nexla

> Give agents access to Nexla's data integration platform.

The `@guildai-services/guildai~nexla` package gives your agents access to Nexla's no-code data integration platform through Guild's Nexla integration.

## Authentication

* **Type:** API key

### Setup

<Steps>
  <Step title="Open Credentials">Go to **Credentials** in Guild.</Step>
  <Step title="Connect Nexla">Click **Nexla** and enter your Nexla API key from the Nexla portal.</Step>
</Steps>

## Usage

```typescript theme={null}
import { nexlaTools } from "@guildai-services/guildai~nexla"
import { llmAgent } from "@guildai/agents-sdk"

export default llmAgent({
  description: "An agent that manages Nexla data flows",
  tools: { ...nexlaTools },
})
```

### Selecting specific tools

Tools are named with the `nexla_` prefix. Use `pick()` to include only what your agent needs.

```typescript theme={null}
import { nexlaTools } from "@guildai-services/guildai~nexla"
import { llmAgent, pick } from "@guildai/agents-sdk"

export default llmAgent({
  description: "An agent that monitors data pipeline status",
  tools: {
    ...pick(nexlaTools, [
      "nexla_nexsets_list",
      "nexla_nexsets_get",
      "nexla_nexsets_run",
    ]),
  },
})
```
