---
title: "Phantom Integration"
description: "Build Phantom mobile universal links and expose provider deeplink reference data"
---
The Phantom integration provides access to build Phantom mobile universal links and expose provider deeplink reference data through the Integrate MCP server.

## Installation

The Phantom integration is included with the SDK:

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

## Setup

Add Phantom to your server configuration:

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

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

### Client-Side Usage

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

const result = await client.phantom.buildBrowseDeeplink({
  url: "value",
});

console.log(result);
```

## Configuration Options

<AutoTypeTable
  path="../src/integrations/phantom.ts"
  name="PhantomIntegrationOptions"
/>


## Tools

### `phantom_build_browse_deeplink`

Build browse deeplink

<AutoTypeTable
  path="generated/tool-params/phantom.ts"
  name="PhantomBuildBrowseDeeplinkParams"
/>

### `phantom_deeplink_provider_reference`

Deeplink provider reference

_No parameters._

## Notes

- Category: Other
- Authentication mode: None
