Slidestorm MCP Quickstart

Connect your agent to Slidestorm in minutes and run your first tool call.

MCP Endpoint
https://mcp.slidestorm.ai/mcp
Cursor
MCP config
{
  "mcpServers": {
    "slidestorm": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote@latest",
        "https://mcp.slidestorm.ai/mcp",
        "--header",
        "Authorization:Bearer YOUR_SLIDESTORM_TOKEN"
      ]
    }
  }
}
Claude Desktop
claude_desktop_config.json
{
  "mcpServers": {
    "slidestorm": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote@latest",
        "https://mcp.slidestorm.ai/mcp",
        "--header",
        "Authorization:Bearer YOUR_SLIDESTORM_TOKEN"
      ]
    }
  }
}
OpenClaw
openclaw MCP server
{
  "mcp": {
    "servers": {
      "slidestorm": {
        "url": "https://mcp.slidestorm.ai/mcp",
        "transport": "streamable-http",
        "headers": {
          "Authorization": "Bearer YOUR_SLIDESTORM_TOKEN"
        }
      }
    }
  }
}

First-run verification

Ask your agent to run these tools in order. If each succeeds, your MCP setup is complete.

Verification prompts
1) "Use Slidestorm MCP to run check_usage."
2) "Use Slidestorm MCP to run list_accounts."
3) "Create a slideshow about 5 coffee brewing tips with create_slideshow."

TikTok publish behavior

MCP posting uses TikTok MEDIA_UPLOAD mode. That means posts are uploaded to TikTok inbox first, then you must open TikTok app and publish manually.

What to tell your agent
When using create_post or update_post:
- Set platform_configurations.tiktok.post_mode to MEDIA_UPLOAD (or omit it).
- Do not expect automatic public publishing.
- After upload succeeds, open TikTok app and publish manually.

Common errors and fixes

Missing token
Add Authorization: Bearer YOUR_SLIDESTORM_TOKEN to your client config.
Invalid token
Create a new token at Settings → API Tokens, then update your client config.
Insufficient credits
Run check_usage and top up before creating slideshows.
Rate limited
Back off and retry after a short delay. Avoid tight polling loops.

Next action

Continue with the API workflow guide for end-to-end examples (create slideshow → poll → post).