debug-issue
Identify and resolve technical issues by analyzing symptoms, specifying tasks, and leveraging AI providers for systematic debugging on Ultra MCP.
Instructions
Debug technical issues with systematic problem-solving approach
Input Schema
Name | Required | Description | Default |
---|---|---|---|
files | No | Relevant file paths (optional) | |
provider | No | AI provider to use | gemini |
symptoms | No | Error symptoms or behavior observed | |
task | Yes | What to debug (e.g., 'fix login error', 'investigate memory leak') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"files": {
"description": "Relevant file paths (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"provider": {
"default": "gemini",
"description": "AI provider to use",
"enum": [
"openai",
"gemini",
"azure",
"grok"
],
"type": "string"
},
"symptoms": {
"description": "Error symptoms or behavior observed",
"type": "string"
},
"task": {
"description": "What to debug (e.g., 'fix login error', 'investigate memory leak')",
"type": "string"
}
},
"required": [
"task"
],
"type": "object"
}