From 5c761174c2351e77969ab2561cb6bd60acf6d1a9 Mon Sep 17 00:00:00 2001 From: Khan Date: Wed, 30 Jul 2025 09:50:21 +0800 Subject: [PATCH] docs: Complete tool calling bash script in MCP client example (#9073) ### What problem does this PR solve? - Fix incomplete curl command in section 5 'Tool calling', add missing closing braces and parentheses to complete the JSON payload This resolves the incomplete bash script that was missing proper JSON structure closure. ### Type of change - [x] Documentation Update --- docs/develop/mcp/mcp_client_example.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/develop/mcp/mcp_client_example.md b/docs/develop/mcp/mcp_client_example.md index 508316487..3d154a7ce 100644 --- a/docs/develop/mcp/mcp_client_example.md +++ b/docs/develop/mcp/mcp_client_example.md @@ -158,7 +158,8 @@ curl -X POST "http://127.0.0.1:9382/messages/?session_id=$session_id" \ "dataset_ids": ["DATASET_ID_HERE"], "document_ids": [] } - + } + }' ``` #### Transport