MiniMax MCP Call

WarnAudited by ClawScan on May 10, 2026.

Overview

The skill appears to provide the advertised MiniMax search and image tools, but it runs an unpinned external MCP package and gives it a broad environment that may include unrelated secrets.

Review carefully before installing. This skill is not clearly malicious, but you should only use it if you trust the external minimax-coding-plan-mcp package and are comfortable storing a MiniMax API key in ~/.openclaw/.env. Prefer isolating the environment so unrelated API keys are not present when running it.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If the external MCP package changes or is compromised, it could run local code under the user's environment when the skill is invoked.

Why it was flagged

At runtime the skill executes an external package that is not included in the manifest and is not version-pinned in the artifacts.

Skill content
mcpProcess = spawn("uvx", ["minimax-coding-plan-mcp", "-y"], {
Recommendation

Pin the package/version, document the package source, use a reviewed local dependency or lockfile, and require clear user approval before first execution.

What this means

Other API keys or secrets present in the OpenClaw environment could be made available to code that only needs the MiniMax API key.

Why it was flagged

The spawned MCP process receives the full process environment, not only the MiniMax variables. The wrapper also loads ~/.openclaw/.env, so unrelated credentials in that file may be exposed to the external MCP server process.

Skill content
env: { ...process.env, MINIMAX_API_KEY: API_KEY, MINIMAX_API_HOST: API_HOST }
Recommendation

Pass only the specific MiniMax variables needed by the MCP server, avoid exporting the entire .env file, and declare the credential requirements in metadata.

What this means

Users may underestimate the setup and credential exposure if they rely only on the registry metadata.

Why it was flagged

The registry metadata says no credential is required, while SKILL.md says the skill requires a MiniMax Coding Plan API key and setup in ~/.openclaw/.env.

Skill content
Required env vars: none ... Primary credential: none
Recommendation

Update metadata to declare the MiniMax API key, uv, and Node.js requirements.

What this means

Search terms, prompts, and image URLs may be sent to MiniMax or processed through the MCP server.

Why it was flagged

The skill routes search queries and image-understanding requests through an MCP server and MiniMax provider, which is expected for the advertised functionality.

Skill content
Web search and image understanding via MiniMax Coding Plan MCP.
Recommendation

Avoid submitting private images, confidential URLs, or sensitive search prompts unless this data sharing is acceptable.