MCP server to communicate with DAP servers allowing AI Agents the ability to debug live programs.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-dap-server": {
"command": "go",
"args": [
"run",
"github.com/go-delve/mcp-dap-server@latest"
]
}
}
}
Run in terminal:
claude mcp add mcp-dap-server go run github.com/go-delve/mcp-dap-server@latest
Add to .cursor/mcp.json:
{
"mcpServers": {
"mcp-dap-server": {
"command": "go",
"args": [
"run",
"github.com/go-delve/mcp-dap-server@latest"
]
}
}
}