test-port-availability
Check if a specific port is available by entering its number, resolving connectivity issues in the MCP Troubleshooter diagnostic framework.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
port | Yes | Port number to test |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"port": {
"description": "Port number to test",
"maximum": 65535,
"minimum": 1,
"type": "integer"
}
},
"required": [
"port"
],
"type": "object"
}