From 1df4fc0ff4125fad401feb94168959af33e24ef6 Mon Sep 17 00:00:00 2001 From: Minho Yoo Date: Tue, 17 Mar 2026 01:15:31 +0900 Subject: [PATCH] fix: add -y flag to npx args for non-interactive MCP startup npx prompts before installing missing packages in non-interactive environments. Adding -y ensures @waiaas/mcp installs automatically on first run without blocking OpenClaw's MCP subprocess startup. --- skills/waiaas/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/waiaas/SKILL.md b/skills/waiaas/SKILL.md index 2d56087cf47..092a1cec716 100644 --- a/skills/waiaas/SKILL.md +++ b/skills/waiaas/SKILL.md @@ -48,7 +48,7 @@ Connect the MCP server (pass token via environment variable): ```bash export WAIAAS_SESSION_TOKEN="" openclaw config set mcpServers.waiaas.command "npx" -openclaw config set mcpServers.waiaas.args '["@waiaas/mcp"]' +openclaw config set mcpServers.waiaas.args '["-y", "@waiaas/mcp"]' openclaw config set mcpServers.waiaas.env.WAIAAS_SESSION_TOKEN "\${WAIAAS_SESSION_TOKEN}" ```