OpenClaw is a personal AI assistant running locally, integrating with messaging platforms for control.
Prerequisites
- A MiniMax Subscription Key with Token Plan or Credits access
- A computer with terminal access (macOS, Linux, or Windows with WSL)
Run Installation Command
Run the installation command in your terminal:You’ll see this entry page:
Start Setup
Select “Yes” .
Select QuickStart Mode
Select “QuickStart” to use the guided setup.
Select Model Provider
Select “MiniMax” as the model provider.
Select Auth Method
Select “MiniMax Global — OAuth (minimax.io)” as the authentication method.
Sign In to MiniMax
You’ll be sent to a browser window to sign in to or sign up for your MiniMax API Platform account.
Authorize OpenClaw
Select “Authorize”, after which you can return to the terminal.
Confirm Model Selection
A model picker will appear with the available models already selected. Press Enter to continue.
Select a Messaging Channel
Back in the terminal, select a messaging channel to connect. OpenClaw supports a range of platforms including Telegram, WhatsApp, Discord, iMessage, and more.
Confirm Installation
Follow the prompts for your chosen channel, then select “Yes” when asked to confirm.
Select Skills
Select any additional skills you wish to install (press space to select, up and down arrows to navigate).
Configure API Keys
Configure additional API Keys for tools that OpenClaw can use (optional). Select “Skip for now” if you don’t need additional tools.
Open Web UI
Select “Open the Web UI” to access the OpenClaw dashboard.
Toggle thinking
Toggle thinking at runtime with /think: off turns it off, adaptive (the default) lets M3 decide when to think.
Advanced Capabilities
Image Understanding
When logged in via OAuth, OpenClaw’s image tool is automatically wired to MiniMax’s Image Understanding MCP server, giving your agent image understanding capabilities out of the box — no extra setup needed.If you authenticate with an API Key manually, or your OpenClaw build doesn’t auto-include the Image Understanding MCP, pick one of the methods below to add image understanding to your agent.
MiniMax CLI (the mmx command) is the official multi-modal command-line tool. Once installed, OpenClaw can invoke mmx vision for image understanding — and you get the same CLI for language, image, video, speech, music, and search (7 multi-modal capabilities).Prepare Environment
Make sure Node.js 18+ is available: Install MiniMax CLI
Run the following command in your terminal for a global install:⭐️ Or hand install, login, and SKILL setup to OpenClaw in one go (replace sk-xxxxx with your actual key): Login with API Key
Authenticate with your API Key (replace sk-xxxxx with your own Key):The latest mmx-cli auto-detects your service region from the Key — no manual region setup is usually needed.If you hit a 401 after logging in, the region likely didn’t auto-match. Set it manually:Run mmx auth status to confirm the region matches the platform where your subscription was purchased. Once logged in, run mmx quota to view your Token Plan balance and confirm the setup is working. Install SKILL (Optional, Recommended for Agent Users)
If you’ll be invoking mmx from inside OpenClaw, we recommend adding the official SKILL.md so the agent makes better tool calls without having to read --help on the fly:The SKILL is auto-symlinked into ~/.openclaw/skills/, and OpenClaw will pick it up on the next launch.
Tell OpenClaw to Use mmx vision
Tell OpenClaw to prefer mmx vision for any future image understanding: Verify
Send an image in OpenClaw and check that it auto-invokes mmx vision describe --image <path> and returns a correct description.
Wire up the Token Plan MCP to use the understand_image tool.Prepare Environment
Make sure uv (the Python package manager) is available: Install and Configure MCP
For manual setup, follow the Token Plan MCP guide. Core steps:
- Install the
mcporter skill (an MCP server manager)
- Configure
minimax-coding-plan-mcp per the official guide
- Set the
MINIMAX_API_KEY environment variable (Token Plan API Key starts with sk-cp):
⭐️ Or hand the entire flow to OpenClaw with this prompt (replace sk-xxxxxxx with your actual API Key): Tell OpenClaw to Use understand_image
Tell OpenClaw to prefer understand_image for image understanding: Verify
Send an image in OpenClaw and check it auto-invokes the understand_image tool and returns a correct description.
Web Search
OpenClaw doesn’t ship with web search out of the box. Add it via one of the methods below (Token Plan subscribers, API Key starts with sk-cp).
mmx search is the web-search command from MiniMax CLI. No separate MCP server process — OpenClaw invokes it directly via Bash.Prepare Environment
Make sure Node.js 18+ is available: Install MiniMax CLI
Run the following command in your terminal for a global install:⭐️ Or hand install, login, and SKILL setup to OpenClaw in one go (replace sk-xxxxx with your actual key): Login with API Key
Authenticate with your API Key (replace sk-xxxxx with your own Key):The latest mmx-cli auto-detects your service region from the Key — no manual region setup is usually needed.If you hit a 401 after logging in, the region likely didn’t auto-match. Set it manually:Run mmx auth status to confirm the region matches the platform where your subscription was purchased. Once logged in, run mmx quota to view your Token Plan balance and confirm the setup is working. Install SKILL (Optional, Recommended for Agent Users)
If you’ll be invoking mmx from inside OpenClaw, we recommend adding the official SKILL.md so the agent makes better tool calls without having to read --help on the fly:The SKILL is auto-symlinked into ~/.openclaw/skills/, and OpenClaw will pick it up on the next launch.
Tell OpenClaw to Use mmx search
mmx search offers two invocation forms:Example prompt for OpenClaw:OpenClaw will run mmx search query --q "..." --output json via the Bash tool and hand the stdout JSON to the model directly — no MCP server process needed.Wire up the Token Plan MCP to use the web_search tool.Prepare Environment
Make sure uv (the Python package manager) is available: Install and Configure MCP
For manual setup, follow the Token Plan MCP guide. Core steps:
- Install the
mcporter skill (an MCP server manager)
- Configure
minimax-coding-plan-mcp per the official guide
- Set the
MINIMAX_API_KEY environment variable (Token Plan API Key starts with sk-cp):
⭐️ Or hand the entire flow to OpenClaw with this prompt (replace sk-xxxxxxx with your actual API Key): Tell OpenClaw to Use web_search
Tell OpenClaw to prefer web_search: Verify
Ask OpenClaw something requiring up-to-date info, and check it auto-invokes the web_search tool and returns search results.
For a full step-by-step walkthrough of connecting OpenClaw to Telegram (including bot creation and pairing), see the OpenClaw Cookbook guide.