stop_intensive_chat
End and clean up an active intensive chat session on MCP server 'interactive-mcp'. Call this tool to close the console window, free system resources, and mark the session as complete once all necessary information has been gathered via 'ask_intensive_chat'.
Instructions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sessionId | Yes | ID of the intensive chat session to stop |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"sessionId": {
"description": "ID of the intensive chat session to stop",
"type": "string"
}
},
"required": [
"sessionId"
],
"type": "object"
}