setBackend
Configure the debugging backend for Go programs within the Delve MCP server. Choose from default, native, lldb, or rr to tailor the debugging environment.
Instructions
Set the backend for debugging
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| backend | Yes | Backend to use (default, native, lldb, or rr) |
Input Schema (JSON Schema)
{
"properties": {
"backend": {
"description": "Backend to use (default, native, lldb, or rr)",
"enum": [
"default",
"native",
"lldb",
"rr"
],
"type": "string"
}
},
"required": [
"backend"
],
"type": "object"
}