get_call_stack
Retrieve the current call stack when debugging is paused to view the chain of function calls, file locations, and scope information for JavaScript/TypeScript applications.
Instructions
Retrieves the current call stack when execution is paused. Shows the chain of function calls that led to the current location, including function names, file locations, and scope information. If source maps are available, original source locations are included.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | ID of the debugging session. The session must be paused. | |
| include_async | No | Whether to include asynchronous stack traces (Promise chains, async/await). Defaults to true. |