---
title: "PowerPoint Integration"
description: "Manage PowerPoint presentations and sharing"
---
The PowerPoint integration provides access to manage PowerPoint presentations and sharing through the Integrate MCP server.

## Installation

The PowerPoint integration is included with the SDK:

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

## Setup

### 1. Create a PowerPoint OAuth App

1. Go to [Azure Portal — App Registrations](https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps)
2. Create a new OAuth application
3. Configure your redirect URI
4. Note your Client ID and Client Secret

### 2. Configure the Integration on Your Server

Add the PowerPoint integration to your server configuration. The integration automatically reads `POWERPOINT_CLIENT_ID` and `POWERPOINT_CLIENT_SECRET` from your environment variables:

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

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

You can override the environment variables by passing explicit values:

```typescript
powerpointIntegration({
  clientId: process.env.CUSTOM_POWERPOINT_ID,
  clientSecret: process.env.CUSTOM_POWERPOINT_SECRET,
});
```

### 3. Client-Side Usage

The default client automatically includes all integrations. You can use it directly:

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

await client.authorize("powerpoint");
const result = await client.powerpoint.list({});

console.log(result);
```

If you're using a custom client, add the integration to the integrations array:

```typescript
import { createMCPClient, powerpointIntegration } from "integrate-sdk";

const customClient = createMCPClient({
  integrations: [powerpointIntegration()],
});
```

## Configuration Options

<AutoTypeTable
  path="../src/integrations/powerpoint.ts"
  name="PowerPointIntegrationConfig"
/>


## Tools

### `powerpoint_copy`

Copy a presentation

<AutoTypeTable
  path="generated/tool-params/powerpoint.ts"
  name="PowerpointCopyParams"
/>

### `powerpoint_create`

Create a new empty .pptx file in OneDrive

<AutoTypeTable
  path="generated/tool-params/powerpoint.ts"
  name="PowerpointCreateParams"
/>

### `powerpoint_delete`

Delete a presentation permanently

<AutoTypeTable
  path="generated/tool-params/powerpoint.ts"
  name="PowerpointDeleteParams"
/>

### `powerpoint_get`

Get metadata for a presentation

<AutoTypeTable
  path="generated/tool-params/powerpoint.ts"
  name="PowerpointGetParams"
/>

### `powerpoint_list`

Search for PowerPoint presentations

<AutoTypeTable
  path="generated/tool-params/powerpoint.ts"
  name="PowerpointListParams"
/>

### `powerpoint_share`

Create a sharing link for a presentation

<AutoTypeTable
  path="generated/tool-params/powerpoint.ts"
  name="PowerpointShareParams"
/>

### `powerpoint_update_content`

Update content

<AutoTypeTable
  path="generated/tool-params/powerpoint.ts"
  name="PowerpointUpdateContentParams"
/>

## Notes

- Category: Productivity
- Authentication mode: OAuth
