MiniMax-AI / MiniMax-AI/MiniMax-Coding-Plan-MCP

[Bug for MCP&API]: 请问一下 minimaxAgetn 中的 image_synthesize 这个mcp 能在哪里找到

Open
#18 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

bug
Dominant language
Python
Stars
102
Forks
30
PR merge metrics
No merged PRs in 30d

Description

Basic Information - Models Used

Minimax-image01

Basic Information - Scenario Description

image_synthesize 这个mcp 能在哪里找到

Is this bug known and solvable?
Information about environment

windows

Trace-ID in the request head

1111

Description

[Bug for MCP&API]: 请问一下 minimaxAgetn 中的 image_synthesize 这个mcp 能在哪里找到

MaxClaw 中 可以调用 , 我想在我代码中集成

image_synthesize 的完整架构
┌─────────────────────────┐
│ 我(OpenClaw Agent) │
└──────────┬──────────────┘
│ 调用 tool: image_synthesize

┌─────────────────────────┐
│ matrix-mcp 插件 │ ← /app/openclaw/extensions/matrix-mcp/
│ (OpenClaw 插件) │
└──────────┬──────────────┘
│ MCP 协议 (JSON-RPC)

┌─────────────────────────┐
│ 本地 MCP Server │ ← http://127.0.0.1:8080/mcp/message
│ (平台内置服务) │
└──────────┬──────────────┘
│ HTTP API

┌─────────────────────────┐
│ MiniMax 图像服务 │
│ image_synthesize │
└─────────────────────────┘

// /app/openclaw/extensions/matrix-mcp/index.ts

import { execSync } from "node:child_process";

const MCP_URL = "http://127.0.0.1:8080/mcp/message?source=openclaw";

async function callTool(name: string, args: Record<string, unknown>) {
const res = await fetch(MCP_URL, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
jsonrpc: "2.0",
id: Date.now(),
method: "tools/call",
params: { name, arguments: args },
}),
});
const data = await res.json();
if (data.error) throw new Error(data.error.message);
return data.result;
}

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by checking the repository documentation and the referenced /app/openclaw/extensions/matrix-mcp/index.ts entry point, especially its MCP_URL and callTool function. Compare that integration with the Minimax-MCP and Minimax-MCP-JS READMEs and the official documentation. Done means clearly identifying whether image_synthesize is provided here and documenting the supported integration path or its absence.

Written by the indexing model from the issue text.

Assessment

Tech stack
typescript
Domain
api
Issue type
Documentation
Difficulty
3/5
Estimated time
1-2 days
Activity status
Quiet
Clarity
Needs clarification
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.