Manage your API keys and explore slides API integrations.
2slides supports Model Context Protocol (MCP) servers, enabling AI agents to generate presentations. We support both Stdio and Streamable HTTP protocols.
Use the 2slides MCP server via Streamable HTTP transport for web-based integrations and remote access.
The Streamable HTTP MCP server endpoint:
https://2slides.com/api/mcp?apikey=YOUR_2SLIDES_API_KEYRun this in your terminal, then check the connection with claude mcp list:
claude mcp add --transport http 2slides \ "https://2slides.com/api/mcp?apikey=YOUR_2SLIDES_API_KEY"
Use the 2slides MCP server via stdio transport for local development and Claude Desktop integration.
For detailed setup instructions, please refer to:
Run this in your terminal, then check the connection with claude mcp list:
claude mcp add 2slides -e API_KEY=YOUR_2SLIDES_API_KEY \ -- npx -y 2slides-mcp@latest
Edit ~/Library/Application Support/Claude/claude_desktop_config.json and add:
{
"mcpServers": {
"2slides": {
"command": "npx",
"args": ["-y", "2slides-mcp@latest"],
"env": {
"API_KEY": "YOUR_2SLIDES_API_KEY"
}
}
}
}