Toolkit MCP Server
by cyanheads
Verified
checkConnectivity
Test TCP connectivity to a host and port
Input Schema
Name | Required | Description | Default |
---|---|---|---|
host | Yes | Target host | |
port | Yes | Target port | |
timeout | No | Connection timeout in milliseconds |
Input Schema (JSON Schema)
{
"properties": {
"host": {
"description": "Target host",
"type": "string"
},
"port": {
"description": "Target port",
"type": "number"
},
"timeout": {
"default": 5000,
"description": "Connection timeout in milliseconds",
"type": "number"
}
},
"required": [
"host",
"port"
],
"type": "object"
}