fix(exec): use empty default and os.pathsep for cross-platform

This commit is contained in:
aiguozhi123456
2026-02-24 12:13:52 +00:00
parent abcce1e1db
commit 7be278517e
2 changed files with 3 additions and 3 deletions

View File

@@ -252,7 +252,7 @@ class ExecToolConfig(Base):
"""Shell exec tool configuration."""
timeout: int = 60
path_append: str = "/usr/sbin:/usr/local/sbin"
path_append: str = ""
class MCPServerConfig(Base):