API

Manage your API keys and explore slides API integrations.

MCP Server

2slides supports Model Context Protocol (MCP) servers, enabling AI agents to generate presentations. We support both Stdio and Streamable HTTP protocols.

Streamable HTTP Protocol

Recommended

Use the 2slides MCP server via Streamable HTTP transport for web-based integrations and remote access.

Endpoint URL

The Streamable HTTP MCP server endpoint:

https://2slides.com/api/mcp?apikey=YOUR_2SLIDES_API_KEY

ClaudeAdd to Claude Code

Run 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"

Stdio Protocol

Use the 2slides MCP server via stdio transport for local development and Claude Desktop integration.

For detailed setup instructions, please refer to:

ClaudeAdd to Claude Code

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

ClaudeSample: Claude Desktop Configuration

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"
      }
    }
  }
}