Skip to content

Commit 69e4e36

Browse files
committed
blah
1 parent 38fd0f9 commit 69e4e36

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

mcp/src/test/java/io/modelcontextprotocol/client/StdioMcpAsyncClientTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ protected McpClientTransport createMcpTransport() {
2626
String currentPath = System.getenv("PATH");
2727
String nodePath = System.getProperty("user.dir") + "/node";
2828
String newPath = nodePath + (currentPath != null ? System.getProperty("path.separator") + currentPath : "");
29-
29+
System.out.println("✅Using PATH: " + newPath);
30+
3031
if (System.getProperty("os.name").toLowerCase().contains("win")) {
3132
stdioParams = ServerParameters.builder("./node/npx.cmd")
3233
.args("-y", "@modelcontextprotocol/server-everything", "stdio")

mcp/src/test/java/io/modelcontextprotocol/client/StdioMcpSyncClientTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ protected McpClientTransport createMcpTransport() {
3434
String currentPath = System.getenv("PATH");
3535
String nodePath = System.getProperty("user.dir") + "/node";
3636
String newPath = nodePath + (currentPath != null ? System.getProperty("path.separator") + currentPath : "");
37-
37+
System.out.println("✅Using PATH: " + newPath);
38+
3839
if (System.getProperty("os.name").toLowerCase().contains("win")) {
3940
stdioParams = ServerParameters.builder("./node/npx.cmd")
4041
.args("-y", "@modelcontextprotocol/server-everything", "stdio")

0 commit comments

Comments
 (0)