Discover our GTM Flywheel: Content, Ads & Outbound working as oneLearn more
Skip to main content
MCP Server

Plus AI MCP

Jun 21, 2026
About

Plus AI creates native, professionally-designed PowerPoint and Google Slides presentations with advanced AI editing and custom branding. Quickly generate, edit, and reformat slides seamlessly in your favorite tools.

How to Use

How to Install and Use Plus AI MCP

Plus AI MCP is a tool that helps you create PowerPoint and Google Slides presentations using AI. It works with chatbots and AI agents to make slide creation easier and faster. Here is a simple, step-by-step guide to install and start using Plus AI MCP.

What Is Plus AI MCP?

Before we start, it's good to know what you are installing. Plus AI MCP is a Model Context Protocol server that lets AI programs talk to Plus AI. With it, you can add features like native PowerPoint creation to other apps and chatbots such as ChatGPT or Claude. It uses OAuth for safe login and follows strong security rules.

Step 1: Sign Up and Get the Server URL

To use Plus AI MCP, you need to sign up first.

After signing up, you will use the remote MCP server URL, which is:
https://mcp.plusai.com/

This URL connects your app or AI agent to the Plus AI MCP server.

Step 2: Add the Remote MCP URL to Your App

Next, add the server URL in your AI tool or chatbot app.

This example shows how to connect to the Plus AI MCP using Python:

import requests

# Plus AI MCP server URL
mcp_url = "https://mcp.plusai.com/"

# Authentication token obtained after OAuth login (example)
auth_token = "your_oauth_access_token"

# Headers for authorization
headers = {
    "Authorization": f"Bearer {auth_token}"
}

# Example request to create a new presentation
data = {
    "command": "create_presentation",
    "title": "My AI Presentation"
}

response = requests.post(mcp_url + "presentations", json=data, headers=headers)

print(response.json())

This code shows how to send natural language commands to the MCP server. You will need to use OAuth to get your token before making requests.

Step 3: Authenticate Securely with OAuth

Plus AI MCP uses OAuth for login security.

  • When integrating, make sure your app follows OAuth standards.
  • This keeps your data safe and complies with Plus AI’s SOC 2 Type II certification.

You can find detailed OAuth steps and examples inside their documentation here:
https://guide.plusai.com/ai-for-presentations/mcp-server

Step 4: Use Plus AI MCP Commands to Create Presentations

Now that your app is connected, you can start making presentations with the MCP server.

Some common commands you can send:

  • Create native PowerPoint files:
    {"command": "create_presentation", "title": "My Presentation"}

  • Convert documents or notes into slides: Send your content with command like convert_text_to_presentation.

  • Edit slides or add custom templates:
    You can use commands for editing and formatting slides within your AI workflow.

Step 5: Try Plus AI MCP in Your AI Workflows

You can now add Plus AI MCP to your chatbot or AI app.

Here are examples of what you can do:

  • Add PowerPoint slide creation in ChatGPT or Claude.
  • Combine deep research tools with Plus AI to create automated presentations.
  • Build your custom AI workflows that generate and edit slides seamlessly.

Summary

Installing Plus AI MCP is quick and simple:

  1. Sign up with Google or Microsoft.
  2. Add the MCP URL https://mcp.plusai.com/ to your app.
  3. Authenticate securely with OAuth.
  4. Use API commands to create and edit presentations.
  5. Integrate MCP into your AI tools or chatbots.

For more help, check the step-by-step guide on their site:
https://guide.plusai.com/ai-for-presentations/mcp-server

Try Plus AI MCP today and stop wasting time on making slides manually!

Details

TypeMCP Server
UpdatedJun 21, 2026
CreatedMar 16, 2026
DocumentationView docs
View Documentation