Plus AI MCP
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 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.
- You can sign up with your Google or Microsoft account by visiting:
https://app.plusdocs.com/preinstall
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
commandlikeconvert_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:
- Sign up with Google or Microsoft.
- Add the MCP URL
https://mcp.plusai.com/to your app. - Authenticate securely with OAuth.
- Use API commands to create and edit presentations.
- 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!