惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
小众软件
小众软件
F
Fortinet All Blogs
博客园 - 叶小钗
博客园_首页
D
DataBreaches.Net
Apple Machine Learning Research
Apple Machine Learning Research
U
Unit 42
爱范儿
爱范儿
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
M
MIT News - Artificial intelligence
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(cli-runtime): translate MCP transports for CLI backen...
Blockchain-O · 2026-04-26 · via Recent Commits to openclaw:main

@@ -227,6 +227,93 @@ describe("prepareCliBundleMcpConfig", () => {

227227

await prepared.cleanup?.();

228228

});

229229230+

it("translates OpenClaw transport field on user mcp.servers into Claude type", async () => {

231+

const workspaceDir = await tempHarness.createTempDir(

232+

"openclaw-cli-bundle-mcp-user-servers-transport-",

233+

);

234+235+

const prepared = await prepareCliBundleMcpConfig({

236+

enabled: true,

237+

mode: "claude-config-file",

238+

backend: {

239+

command: "node",

240+

args: ["./fake-claude.mjs"],

241+

},

242+

workspaceDir,

243+

config: {

244+

plugins: { enabled: false },

245+

mcp: {

246+

servers: {

247+

context7: {

248+

transport: "streamable-http",

249+

url: "https://mcp.context7.com/mcp",

250+

headers: { CONTEXT7_API_KEY: "ctx7sk-test" },

251+

},

252+

"omi-sse": {

253+

transport: "sse",

254+

url: "https://api.omi.me/v1/mcp/sse",

255+

},

256+

},

257+

},

258+

},

259+

});

260+261+

const configFlagIndex = prepared.backend.args?.indexOf("--mcp-config") ?? -1;

262+

expect(configFlagIndex).toBeGreaterThanOrEqual(0);

263+

const generatedConfigPath = prepared.backend.args?.[configFlagIndex + 1];

264+

const raw = JSON.parse(await fs.readFile(generatedConfigPath as string, "utf-8")) as {

265+

mcpServers?: Record<string, { type?: string; transport?: string; url?: string }>;

266+

};

267+268+

expect(raw.mcpServers?.context7?.type).toBe("http");

269+

expect(raw.mcpServers?.context7?.url).toBe("https://mcp.context7.com/mcp");

270+

expect(raw.mcpServers?.context7?.transport).toBeUndefined();

271+272+

expect(raw.mcpServers?.["omi-sse"]?.type).toBe("sse");

273+

expect(raw.mcpServers?.["omi-sse"]?.transport).toBeUndefined();

274+275+

await prepared.cleanup?.();

276+

});

277+278+

it("preserves explicit type and still strips transport on user mcp.servers", async () => {

279+

const workspaceDir = await tempHarness.createTempDir(

280+

"openclaw-cli-bundle-mcp-user-servers-transport-explicit-",

281+

);

282+283+

const prepared = await prepareCliBundleMcpConfig({

284+

enabled: true,

285+

mode: "claude-config-file",

286+

backend: {

287+

command: "node",

288+

args: ["./fake-claude.mjs"],

289+

},

290+

workspaceDir,

291+

config: {

292+

plugins: { enabled: false },

293+

mcp: {

294+

servers: {

295+

mixed: {

296+

type: "http",

297+

transport: "sse",

298+

url: "https://mcp.example.com/mcp",

299+

},

300+

},

301+

},

302+

},

303+

});

304+305+

const configFlagIndex = prepared.backend.args?.indexOf("--mcp-config") ?? -1;

306+

const generatedConfigPath = prepared.backend.args?.[configFlagIndex + 1];

307+

const raw = JSON.parse(await fs.readFile(generatedConfigPath as string, "utf-8")) as {

308+

mcpServers?: Record<string, { type?: string; transport?: string }>;

309+

};

310+311+

expect(raw.mcpServers?.mixed?.type).toBe("http");

312+

expect(raw.mcpServers?.mixed?.transport).toBeUndefined();

313+314+

await prepared.cleanup?.();

315+

});

316+230317

it("user mcp.servers do not override the loopback additionalConfig", async () => {

231318

const workspaceDir = await tempHarness.createTempDir(

232319

"openclaw-cli-bundle-mcp-user-servers-loopback-",

@@ -548,4 +635,52 @@ describe("prepareCliBundleMcpConfig", () => {

548635549636

await prepared.cleanup?.();

550637

});

638+639+

it("translates user mcp.servers transport fields in Gemini system settings", async () => {

640+

const prepared = await prepareCliBundleMcpConfig({

641+

enabled: true,

642+

mode: "gemini-system-settings",

643+

backend: {

644+

command: "gemini",

645+

args: ["--prompt", "{prompt}"],

646+

},

647+

workspaceDir: "/tmp/openclaw-bundle-mcp-gemini",

648+

config: {

649+

plugins: { enabled: false },

650+

mcp: {

651+

servers: {

652+

context7: {

653+

transport: "streamable-http",

654+

url: "https://mcp.context7.com/mcp",

655+

headers: {

656+

Authorization: "Bearer ${CONTEXT7_API_KEY}",

657+

},

658+

},

659+

},

660+

},

661+

},

662+

env: {

663+

CONTEXT7_API_KEY: "ctx7-test",

664+

},

665+

});

666+667+

expect(prepared.env?.CONTEXT7_API_KEY).toBe("ctx7-test");

668+

expect(typeof prepared.env?.GEMINI_CLI_SYSTEM_SETTINGS_PATH).toBe("string");

669+

const raw = JSON.parse(

670+

await fs.readFile(prepared.env?.GEMINI_CLI_SYSTEM_SETTINGS_PATH as string, "utf-8"),

671+

) as {

672+

mcp?: { allowed?: string[] };

673+

mcpServers?: Record<

674+

string,

675+

{ type?: string; transport?: string; url?: string; headers?: Record<string, string> }

676+

>;

677+

};

678+

expect(raw.mcp?.allowed).toEqual(["context7"]);

679+

expect(raw.mcpServers?.context7?.type).toBe("http");

680+

expect(raw.mcpServers?.context7?.transport).toBeUndefined();

681+

expect(raw.mcpServers?.context7?.url).toBe("https://mcp.context7.com/mcp");

682+

expect(raw.mcpServers?.context7?.headers?.Authorization).toBe("Bearer ctx7-test");

683+684+

await prepared.cleanup?.();

685+

});

551686

});