check_port
Verify the availability and usage status of a specified port (1-65535) on your system using the Local Utilities MCP Server. Ideal for troubleshooting and managing network connections.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
port | Yes | Port number to check (1-65535) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"port": {
"anyOf": [
{
"maximum": 65535,
"minimum": 1,
"type": "integer"
},
{
"type": "string"
}
],
"description": "Port number to check (1-65535)"
}
},
"required": [
"port"
],
"type": "object"
}