Cursor10x MCP

MIT License
  • Apple
  • Linux

endConversation

Concludes a conversation by storing the assistant's final message, logging an episode, and recording a milestone in one operation for Cursor10x MCP's persistent memory system.

Instructions

Ends a conversation by storing the assistant message, recording a milestone, and logging an episode in one operation

Input Schema

NameRequiredDescriptionDefault
contentYesContent of the assistant's final message
importanceNoImportance level (low, medium, high)medium
metadataNoOptional metadata
milestone_descriptionYesDescription of what was accomplished
milestone_titleYesTitle of the milestone to record

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Content of the assistant's final message", "type": "string" }, "importance": { "default": "medium", "description": "Importance level (low, medium, high)", "type": "string" }, "metadata": { "additionalProperties": true, "description": "Optional metadata", "type": "object" }, "milestone_description": { "description": "Description of what was accomplished", "type": "string" }, "milestone_title": { "description": "Title of the milestone to record", "type": "string" } }, "required": [ "content", "milestone_title", "milestone_description" ], "type": "object" }
ID: kp8cg6inwq