Toolkit MCP Server
by cyanheads
Verified
pingHost
Ping a host using system ping command
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of ping requests | |
host | Yes | Target host to ping |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 4,
"description": "Number of ping requests",
"type": "number"
},
"host": {
"description": "Target host to ping",
"type": "string"
}
},
"required": [
"host"
],
"type": "object"
}