---
title: "tldraw Integration"
description: "Create and manage tldraw collaborative whiteboards"
---
The tldraw integration provides access to create and manage tldraw collaborative whiteboards through the Integrate MCP server.

## Installation

The tldraw integration is included with the SDK:

```typescript
import { tldrawIntegration } from "integrate-sdk/server";
```

## Setup

Add tldraw to your server configuration:

```typescript
import { createMCPServer, tldrawIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    tldrawIntegration(),
  ],
});
```

### Client-Side Usage

```typescript
import { client } from "integrate-sdk";

// Use client.tldraw methods after connecting
```

## Configuration Options

<AutoTypeTable
  path="../src/integrations/tldraw.ts"
  name="TldrawIntegrationOptions"
/>


## Tools

### `tldraw_unfurl_url`

Unfurl url

_No parameters._

### `tldraw_create_room_snapshot`

Create room snapshot

_No parameters._

### `tldraw_get_room_snapshot`

Get room snapshot

_No parameters._

### `tldraw_get_published_snapshot`

Get published snapshot

_No parameters._

### `tldraw_get_readonly_slug`

Get readonly slug

_No parameters._

## Notes

- Category: Productivity
- Authentication mode: None
