Skip to content

Commit 89b3b62

Browse files
committed
update mcp plugin for linux sh
1 parent 6a0b972 commit 89b3b62

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/mcp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@utcp/mcp",
3-
"version": "1.0.13",
3+
"version": "1.0.14",
44
"description": "Model Context Protocol integration for UTCP",
55
"main": "dist/index.cjs",
66
"module": "dist/index.js",

packages/mcp/src/mcp_communication_protocol.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export class McpCommunicationProtocol implements CommunicationProtocol {
9999
};
100100

101101
transport = new StdioClientTransport({
102-
command: isWindows ? 'cmd.exe' : '/bin/sh',
102+
command: isWindows ? 'cmd.exe' : 'sh',
103103
args: isWindows ? ['/c', commandString] : ['-c', commandString],
104104
cwd: stdioConfig.cwd,
105105
env: combinedEnv,

0 commit comments

Comments
 (0)