MCP Server Template for Cursor IDE

apply_prompt_fix

Provides a prompt for performing root cause analysis and fixing issues

Input Schema

NameRequiredDescriptionDefault
issueYesA description of the issue to be analyzed and fixed
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": { "issue": { "description": "A description of the issue to be analyzed and fixed", "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": [ "issue" ], "type": "object" }