Saki Docs

MCP Setup

Connect Saki to AI assistants via the Model Context Protocol.

Saki exposes an MCP (Model Context Protocol) server so AI assistants like Claude can schedule and manage your social media posts.

Prerequisites

  • A Saki account on the Pro or Team plan.
  • An MCP-compatible AI assistant (e.g. Claude Desktop, Cursor, Claude Code).

Get your API key

  1. Go to Settings > API.
  2. Click Generate Key.
  3. Copy the key — you'll need it in the next step.

Configure your MCP client

Add the following to your MCP client configuration:

{
  "mcpServers": {
    "saki": {
      "command": "npx",
      "args": ["-y", "@saki/mcp-server"],
      "env": {
        "SAKI_API_KEY": "your-api-key-here"
      }
    }
  }
}

Available tools

Once connected, your AI assistant will have access to:

  • create_post — Create and schedule a new post.
  • list_posts — View upcoming scheduled posts.
  • list_accounts — See connected social accounts.
  • delete_post — Cancel a scheduled post.

Troubleshooting

If the MCP server doesn't connect, make sure:

  • Your API key is valid and has not been revoked.
  • You are on a Pro or Team plan.
  • Your MCP client supports the latest MCP protocol version.

On this page