From f45f91e586ab96e96ea7091119a498cdf5ad3e2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 28 Mar 2025 19:38:34 +0300 Subject: [PATCH] update help --- cmd/mcptools/main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/mcptools/main.go b/cmd/mcptools/main.go index e8a59a1..66a2eff 100644 --- a/cmd/mcptools/main.go +++ b/cmd/mcptools/main.go @@ -957,6 +957,9 @@ Examples: # Register a shell script as an MCP tool mcp proxy tool add_operation "Adds a and b" "a:int,b:int" ./add.sh + # Register an inline command as an MCP tool + mcp proxy tool add_operation "Adds a and b" "a:int,b:int" -e 'echo "total is $a + $b = $(($a+$b))"' + # Start a proxy server with the registered tools mcp proxy start`, }