@@ -43,7 +43,7 @@ MCP toolsets
4343(stdio) or remote servers (HTTP/SSE). MCP enables access to a wide ecosystem
4444of standardized tools.
4545Custom toolsets
46- : Shell scripts wrapped as tools with typed parameters (` script_shell ` ). This
46+ : Shell scripts wrapped as tools with typed parameters (` script ` ). This
4747lets you define domain-specific tools for your use case.
4848
4949## Configuration
@@ -77,7 +77,7 @@ agents:
7777 Authorization : Bearer ${API_TOKEN}
7878
7979 # Custom shell tools
80- - type : script_shell
80+ - type : script
8181 tools :
8282 build :
8383 cmd : npm run build
@@ -316,7 +316,7 @@ toolsets:
316316# ## API
317317
318318The `api` toolset lets you define custom tools that call HTTP APIs. Similar to
319- ` script_shell ` but for web services, this allows you to expose REST APIs,
319+ ` script ` but for web services, this allows you to expose REST APIs,
320320webhooks, or any HTTP endpoint as a tool your agent can use. The agent sees
321321these as typed tools with automatic parameter validation.
322322
@@ -367,9 +367,9 @@ requests, parameters are sent as JSON in the request body.
367367
368368Supported argument types : ` string` , `number`, `boolean`, `array`, `object`.
369369
370- # ## Script Shell
370+ # ## Script
371371
372- The `script_shell ` toolset lets you define custom tools by wrapping shell
372+ The `script ` toolset lets you define custom tools by wrapping shell
373373commands with typed parameters. This allows you to expose domain-specific
374374operations to your agent as first-class tools. The agent sees these custom
375375tools just like built-in tools, with parameter validation and type checking
@@ -385,7 +385,7 @@ parameters:
385385
386386` ` ` yaml
387387toolsets:
388- - type: script_shell
388+ - type: script
389389 tools:
390390 deploy:
391391 cmd: ./deploy.sh
0 commit comments