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.

Stdio Protocol

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

For detailed setup instructions, please refer to:

ClaudeSample: Claude Desktop Configuration

Edit ~/Library/Application Support/Claude/claude_desktop_config.json and add:

{
  "mcpServers": {
    "2slides": {
      "command": "npx",
      "args": ["2slides-mcp"],
      "env": {
        "API_KEY": "YOUR_2SLIDES_API_KEY"
      }
    }
  }
}

Streamable HTTP Protocol

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-api-key}