Connect via MCP
Connect Claude, ChatGPT, or any MCP client to Rideful's presentation tools using the MCP server at https://slides.rideful.io/mcp.What is MCP?
MCP (Model Context Protocol) is an open standard that lets AI assistants connect to external tools and services. Instead of generating code that users have to run themselves, an MCP-connected agent can call tools directly — creating slides, styling elements, and exporting presentations without any manual steps.
Rideful uses MCP because it makes AI agents first-class users of the platform. The agent authenticates once via OAuth, then has access to 21 tools for full presentation CRUD. No API keys to manage, no code to execute, no SDKs to install — the AI assistant talks to Rideful the same way it talks to any other MCP service.
MCP Server Details
- URL:
https://slides.rideful.io/mcp - Transport: Streamable HTTP (stateless)
- Authentication: OAuth 2.0 (handled automatically by MCP clients)
- Tools available: 21 tools for full presentation CRUD
Supported Clients
Claude.ai
Add Rideful via the Connectors panel in Settings. Full setup guide →
ChatGPT
Add via Settings > Apps & Connectors. Requires Developer Mode enabled. Full setup guide →
Le Chat (Mistral)
Add via Settings > Connections > Custom MCP. Full setup guide →
Claude Code
Run this single command in your terminal:
claude mcp add -s user rideful-slides https://slides.rideful.io/mcpAny MCP Client
Point your MCP client to https://slides.rideful.io/mcp — the OAuth flow handles authentication automatically.
Your First Tool Call
Once connected, try slides_list_decks to see your existing presentations:
// Ask your AI assistant:
"List my presentations"
// The agent calls:
slides_list_decks()
// Returns:
{
"decks": [
{
"id": "abc123",
"title": "Q4 Strategy Review",
"slideCount": 12,
"lastModified": "2026-02-27T10:30:00Z"
}
]
}Or jump straight to creating a new deck with slides_bulk_create. See the Quick Start guide for a full end-to-end example.
Related
- What is Rideful? — Overview, key features, and comparison to alternatives
- Quick Start — Create your first presentation in under 2 minutes
- Deck Operations — Full reference for deck creation and management tools