MCP Server Template for Cursor IDE

apply_prompt_change

Provides a prompt for systematically handling change requests

Input Schema

NameRequiredDescriptionDefault
change_requestYesDescription of the change request to implement
specific_instructionsNoOptional specific instructions to include in the prompt
versionNoThe version of the prompt template to use (e.g., '1.0.0', '1.1.0', or 'latest')

Input Schema (JSON Schema)

{ "properties": { "change_request": { "description": "Description of the change request to implement", "type": "string" }, "specific_instructions": { "description": "Optional specific instructions to include in the prompt", "type": "string" }, "version": { "description": "The version of the prompt template to use (e.g., '1.0.0', '1.1.0', or 'latest')", "type": "string" } }, "required": [ "change_request" ], "type": "object" }