step
Execute a single step into a function call during a Go program debugging session. Input the session ID to precisely control and analyze code execution with Delve MCP.
Instructions
Step into function call
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sessionId | Yes | ID of the debug session |
Input Schema (JSON Schema)
{
"properties": {
"sessionId": {
"description": "ID of the debug session",
"type": "string"
}
},
"required": [
"sessionId"
],
"type": "object"
}