mcp__gemini__debug_master
Debug and analyze code errors with step-by-step insights, execution simulation, and fix validation. Supports multiple languages for efficient troubleshooting in development workflows.
Instructions
Advanced debugging with execution simulation, fix validation, and step-by-step analysis
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| code | No | Code where error occurs | |
| context | No | Additional context | |
| error_message | Yes | Error message or description | |
| language | No | Programming language | javascript | 
| simulate_execution | No | Enable execution simulation | |
| stack_trace | No | Stack trace if available | 
Input Schema (JSON Schema)
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "code": {
      "description": "Code where error occurs",
      "type": "string"
    },
    "context": {
      "description": "Additional context",
      "type": "string"
    },
    "error_message": {
      "description": "Error message or description",
      "type": "string"
    },
    "language": {
      "default": "javascript",
      "description": "Programming language",
      "type": "string"
    },
    "simulate_execution": {
      "default": true,
      "description": "Enable execution simulation",
      "type": "boolean"
    },
    "stack_trace": {
      "description": "Stack trace if available",
      "type": "string"
    }
  },
  "required": [
    "error_message"
  ],
  "type": "object"
}