Update doc in tools/trigger-elicitation-request.ts and trigger-long-running-operation.ts

This commit is contained in:
cliffhall
2025-12-13 15:16:37 -05:00
parent 8291c0b290
commit b8074f9b9c
2 changed files with 9 additions and 8 deletions

View File

@@ -21,8 +21,8 @@ const config = {
* the elicitation input arguments at runtime.
*
* The elicitation dialog response is returned, formatted into a structured result,
* which contains both user-submitted input data (if provided) and debugging
* information, including raw results.
* which contains both user-submitted input data (if provided) and debugging information,
* including raw results.
*
* @param {McpServer} server - The MCP server instance to which the tool will be registered.
*/

View File

@@ -22,13 +22,14 @@ const config = {
/**
* Registers the 'trigger-tong-running-operation' tool with the provided McpServer instance.
*
* This function defines and registers a tool with the provided server instance that performs a
* long-running operation defined by a specific duration and number of steps. The progress
* of the operation is reported back to the client through notifications.
* The registered tool starts a long-running operation defined by a specific duration and
* number of steps.
*
* Progress notifications are sent back to the client at each step, if a `progressToken`
* is provided in the metadata. At the end of the operation, the tool returns a message
* indicating the completion of the operation, including the total duration and steps.
* Progress notifications are sent back to the client at each step if a `progressToken`
* is provided in the metadata.
*
* At the end of the operation, the tool returns a message indicating the completion of the
* operation, including the total duration and steps.
*
* @param {McpServer} server - The server instance where the tool should be registered.
*/