---
title: "Install"
description: "Installation guide for the AI Toolkit extension. Learn how to install, configure, and start using the AI Toolkit in your Tiptap editor."
canonical_url: "https://tiptap.dev/docs/content-ai/capabilities/ai-toolkit/install"
---

# Install

Installation guide for the AI Toolkit extension. Learn how to install, configure, and start using the AI Toolkit in your Tiptap editor.

- **1. Get access**

  Access the AI Toolkit extension by purchasing the paid AI Toolkit add-on.
  Contact our team.
- **2. Access the private registry**

  The AI Toolkit extension is published in Tiptap's private npm registry. Authenticate to Tiptap's
  private npm registry by following the [setup guide](https://tiptap.dev/docs/guides/pro-extensions.md).
- **3. Install the extension**

  Install the extension from the private registry using npm or your preferred package manager.

First, contact our team to purchase the paid
AI Toolkit add-on.

After gaining access, configure your package manager by following the [private registry
guide](https://tiptap.dev/docs/guides/pro-extensions.md).

Then, install the package:

```bash
npm install @tiptap-pro/ai-toolkit
```

Add the extension to your editor.

```tsx
import { Editor } from '@tiptap/core'
import StarterKit from '@tiptap/starter-kit'
import { AiToolkit, getAiToolkit } from '@tiptap-pro/ai-toolkit'

const editor = new Editor({
  // Add the AI Toolkit extension
  extensions: [AiToolkit],
})

// Get the AI Toolkit instance
const toolkit = getAiToolkit(editor)
```

Congratulations! You've set up the AI Toolkit. Now you can start building your AI integration.

> **Required Tiptap version:**
>
> Make sure all `@tiptap/*` packages are version `3.12.0` or higher.

## Next steps

Choose a guide to get started:

[AI agent chatbot
More →Build a conversational AI capable of editing documents and interacting through chat.](https://tiptap.dev/docs/content-ai/capabilities/ai-toolkit/agents/ai-agent-chatbot.md)

[Workflows
More →Perform simple document editing tasks like inserting content, proofreading, and more.](https://tiptap.dev/docs/content-ai/capabilities/ai-toolkit/workflows.md)
