Skip to content

Commit 55ff403

Browse files
committed
Update dsl-reference.md
1 parent 5d26df3 commit 55ff403

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dsl-reference.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -539,17 +539,17 @@ The [MCP Call](#mcp-call) enables workflows to interact with MCP servers that ar
539539
| Name | Type | Required | Description|
540540
|:--|:---:|:---:|:---|
541541
| method | `string` | `yes` | The MCP JSON-RPC method to send.<br>*Supported values are: `initialize`, `notifications/initialized`, `prompts/list`, `prompts/get`, `notifications/prompts/list_changed`, `resources/list`, `resources/read`, `resources/templates/list`, `notifications/resources/list_changed`, `tools/list`, `tools/call`, `notifications/tools/list_changed`, `logging/setLevel`, and `notifications/message`* |
542-
| server | `string`\|[`endpoint`](#endpoint) | `yes` | An URI or an object that describes the MCP server to call.<br>|
543-
| parameters | `map` <br> `string` | `no` | The parameters for the MCP RPC method. For the `initialize` method, runtimes must set the `protocolVersion` parameter to the used version.<br>*Can be an object or a runtime expression.* |
542+
| server | `string`\|[`endpoint`](#endpoint) | `yes` | An URI, an object (for HTTP) or a filename (for STDIO) that describes the MCP server to call.<br>|
543+
| parameters | `map` <br> `string` | `no` | The parameters for the MCP RPC method. For the `initialize` method, runtimes must set the `protocolVersion` parameter to the used version. Runtimes must implement the MCP specification version of 2025-06-18. <br>*Can be an object or a runtime expression.* |
544544

545545
> [!NOTE]
546546
> On success the output is the JSON-RPC result. On failure runtimes must raise an error with type [https://serverlessworkflow.io/spec/1.0.0/errors/runtime](https://github.com/serverlessworkflow/specification/blob/main/dsl-reference.md#standard-error-types).
547547
>
548-
> This call only supports MCP over HTTP transport mechanism and not STDIO (communication over standard in and standard out).
548+
> This call supports MCP over both HTTP and STDIO (communication over standard in and standard out) transport mechanisms.
549549

550550
###### Examples
551551

552-
This example shows an initialization phase as the first interaction between MCP client and server. The client sends its supported version, capabilities, and implementation informationin the initialize request. The server MUST respond with its own capabilities and information including the supported version.
552+
This example shows an initialization phase as the first interaction between MCP client and server. The client sends its supported version, capabilities, and implementation information in the initialize request. The server MUST respond with its own capabilities and information including the supported version.
553553

554554
```yaml
555555
document:

0 commit comments

Comments
 (0)