inspect_variables
Inspect local or global variables in a NodeJS server's current scope to analyze and debug code during runtime.
Instructions
Inspects variables in current scope
Input Schema
Name | Required | Description | Default |
---|---|---|---|
scope | No | Scope to inspect (local/global) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"scope": {
"description": "Scope to inspect (local/global)",
"type": "string"
}
},
"type": "object"
}