ping
Check the connectivity of a host by sending a ping request. Verify network accessibility and measure response time for any specified hostname or URL.
Instructions
Pings a host and returns the result
Input Schema
Name | Required | Description | Default |
---|---|---|---|
host | Yes | The hostname or URL to ping (e.g., 'google.com' or 'https://google.com') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"host": {
"description": "The hostname or URL to ping (e.g., 'google.com' or 'https://google.com')",
"type": "string"
}
},
"required": [
"host"
],
"type": "object"
}