Skip to content

Commit 4863070

Browse files
committed
fix: try execute
1 parent 1e696c5 commit 4863070

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/build-github-mcp-server.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ jobs:
5757
{
5858
"servers": {
5959
"github": {
60-
"command": "github-mcp-server",
61-
"args": ["stdio"],
60+
"command": "/bin/sh",
61+
"args": ["-c", "./github-mcp-server stdio"],
6262
"env": {
6363
"GITHUB_PERSONAL_ACCESS_TOKEN": "x"
6464
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-mcp"
3-
version = "0.0.71"
3+
version = "0.0.72"
44
description = "UiPath MCP SDK"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"

src/uipath_mcp/_cli/_runtime/_runtime.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,13 @@ async def _register(self) -> None:
254254
tools_result = None
255255
server_stderr_output = ""
256256

257+
import os
258+
print(f"Current working directory: {os.getcwd()}")
259+
print(f"Files in directory: {os.listdir('.')}")
260+
binary_path = "github-mcp-server"
261+
print(f"Binary exists: {os.path.exists(binary_path)}")
262+
print(f"Binary is executable: {os.access(binary_path, os.X_OK)}")
263+
257264
try:
258265
# Create a temporary session to get tools
259266
server_params = StdioServerParameters(

0 commit comments

Comments
 (0)