View as Markdown

Phantom Integration

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:

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

Setup

Add Phantom to your server configuration:

import { createMCPServer, phantomIntegration } from "integrate-sdk/server";
 
export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    phantomIntegration(),
  ],
});

Client-Side Usage

import { client } from "integrate-sdk";
 
const result = await client.phantom.buildBrowseDeeplink({
  url: "value",
});
 
console.log(result);

Configuration Options

export interface PhantomIntegrationOptions {
  ref?: string;

Tools

Build browse deeplink

export interface PhantomBuildBrowseDeeplinkParams { url: string;

Deeplink provider reference

No parameters.

Notes

  • Category: Other
  • Authentication mode: None