ping tool is a lightweight health check that verifies two things at once: your agent token is valid and the Nebula Hub is reachable. It takes no parameters and returns a confirmation message alongside an ISO 8601 timestamp from the Hub. Use it to sanity-check a new connection, diagnose intermittent failures, or confirm that credentials are wired up correctly before running more complex operations.
Parameters
ping takes no parameters. Pass an empty object {} as the tool input.
Response
On success,ping always returns status: "ok".
Always
"ok" for a successful ping.A two-line string: the literal text
Nebula is alive followed by a newline and the current UTC timestamp in ISO 8601 format (e.g. 2025-01-15T10:23:45.123Z).Example
Call:When to use
Common scenarios:- First connection — verify your
nbl_live_…token is accepted before building out agent logic. - Debugging — if a more complex tool call is failing unexpectedly, ping first to rule out connectivity or authentication problems.
- Monitoring — include
pingin a periodic health-check loop to detect Hub downtime.