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

推荐订阅源

博客园_首页
H
Help Net Security
N
Netflix TechBlog - Medium
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
A
About on SuperTechFans
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
博客园 - 【当耐特】
Microsoft Security Blog
Microsoft Security Blog
Martin Fowler
Martin Fowler
I
InfoQ
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog RSS Feed
U
Unit 42
The Cloudflare Blog
Y
Y Combinator 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(mcp): tear down stdio process trees · openclaw/opencl...
steipete · 2026-04-23 · via Recent Commits to openclaw:main

@@ -0,0 +1,140 @@

1+

import { spawn, type ChildProcess } from "node:child_process";

2+

import process from "node:process";

3+

import { PassThrough } from "node:stream";

4+

import { getDefaultEnvironment } from "@modelcontextprotocol/sdk/client/stdio.js";

5+

import { ReadBuffer, serializeMessage } from "@modelcontextprotocol/sdk/shared/stdio.js";

6+

import type { Transport } from "@modelcontextprotocol/sdk/shared/transport.js";

7+

import type { JSONRPCMessage } from "@modelcontextprotocol/sdk/types.js";

8+

import { killProcessTree } from "../process/kill-tree.js";

9+10+

export type OpenClawStdioServerParameters = {

11+

command: string;

12+

args?: string[];

13+

env?: Record<string, string>;

14+

cwd?: string;

15+

stderr?: "pipe" | "overlapped" | "inherit" | "ignore";

16+

};

17+18+

const CLOSE_TIMEOUT_MS = 2000;

19+20+

function delay(ms: number) {

21+

return new Promise<void>((resolve) => {

22+

setTimeout(resolve, ms).unref();

23+

});

24+

}

25+26+

export class OpenClawStdioClientTransport implements Transport {

27+

onclose?: () => void;

28+

onerror?: (error: Error) => void;

29+

onmessage?: (message: JSONRPCMessage) => void;

30+31+

private readonly readBuffer = new ReadBuffer();

32+

private readonly stderrStream: PassThrough | null = null;

33+

private process?: ChildProcess;

34+35+

constructor(private readonly serverParams: OpenClawStdioServerParameters) {

36+

if (serverParams.stderr === "pipe" || serverParams.stderr === "overlapped") {

37+

this.stderrStream = new PassThrough();

38+

}

39+

}

40+41+

async start(): Promise<void> {

42+

if (this.process) {

43+

throw new Error(

44+

"OpenClawStdioClientTransport already started; Client.connect() starts transports automatically.",

45+

);

46+

}

47+48+

await new Promise<void>((resolve, reject) => {

49+

const child = spawn(this.serverParams.command, this.serverParams.args ?? [], {

50+

cwd: this.serverParams.cwd,

51+

detached: process.platform !== "win32",

52+

env: {

53+

...getDefaultEnvironment(),

54+

...this.serverParams.env,

55+

},

56+

shell: false,

57+

stdio: ["pipe", "pipe", this.serverParams.stderr ?? "inherit"],

58+

windowsHide: process.platform === "win32",

59+

});

60+

this.process = child;

61+62+

child.on("error", (error: Error) => {

63+

reject(error);

64+

this.onerror?.(error);

65+

});

66+

child.on("spawn", () => resolve());

67+

child.on("close", () => {

68+

this.process = undefined;

69+

this.onclose?.();

70+

});

71+

child.stdin?.on("error", (error: Error) => this.onerror?.(error));

72+

child.stdout?.on("data", (chunk: Buffer) => {

73+

this.readBuffer.append(chunk);

74+

this.processReadBuffer();

75+

});

76+

child.stdout?.on("error", (error: Error) => this.onerror?.(error));

77+

if (this.stderrStream && child.stderr) {

78+

child.stderr.pipe(this.stderrStream);

79+

}

80+

});

81+

}

82+83+

get stderr() {

84+

return this.stderrStream ?? this.process?.stderr ?? null;

85+

}

86+87+

get pid() {

88+

return this.process?.pid ?? null;

89+

}

90+91+

private processReadBuffer() {

92+

while (true) {

93+

try {

94+

const message = this.readBuffer.readMessage();

95+

if (message === null) {

96+

break;

97+

}

98+

this.onmessage?.(message);

99+

} catch (error) {

100+

this.onerror?.(error instanceof Error ? error : new Error(String(error)));

101+

}

102+

}

103+

}

104+105+

async close(): Promise<void> {

106+

const processToClose = this.process;

107+

this.process = undefined;

108+

if (processToClose) {

109+

const closePromise = new Promise<void>((resolve) => {

110+

processToClose.once("close", () => resolve());

111+

});

112+

try {

113+

processToClose.stdin?.end();

114+

} catch {

115+

// best-effort

116+

}

117+

await Promise.race([closePromise, delay(CLOSE_TIMEOUT_MS)]);

118+

if (processToClose.exitCode === null && processToClose.pid) {

119+

killProcessTree(processToClose.pid);

120+

await Promise.race([closePromise, delay(CLOSE_TIMEOUT_MS)]);

121+

}

122+

}

123+

this.readBuffer.clear();

124+

}

125+126+

send(message: JSONRPCMessage): Promise<void> {

127+

return new Promise((resolve) => {

128+

const stdin = this.process?.stdin;

129+

if (!stdin) {

130+

throw new Error("Not connected");

131+

}

132+

const json = serializeMessage(message);

133+

if (stdin.write(json)) {

134+

resolve();

135+

} else {

136+

stdin.once("drain", resolve);

137+

}

138+

});

139+

}

140+

}