nmap_basic_scan
Conduct a basic network scan to identify specified targets, check common ports, and determine scan type using Nmap capabilities via an MCP server.
Instructions
Perform a basic Nmap scan of specified targets
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ports | No | common | |
scan_type | No | quick | |
targets | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ports": {
"default": "common",
"title": "Ports",
"type": "string"
},
"scan_type": {
"default": "quick",
"title": "Scan Type",
"type": "string"
},
"targets": {
"title": "Targets",
"type": "string"
}
},
"required": [
"targets"
],
"title": "nmap_basic_scanArguments",
"type": "object"
}