get_console_output
Retrieve the latest console output from a NodeJS debugged process to monitor and analyze application behavior, with customizable entry limits.
Instructions
Gets the most recent console output from the debugged process
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of console entries to return. Defaults to 20 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum number of console entries to return. Defaults to 20",
"type": "number"
}
},
"type": "object"
}