Skip to main content
Glama
1mr0-tech

PwnBridge

Official
by 1mr0-tech

nikto_scan

Run a Nikto web server vulnerability scan against a target URL on a remote Kali machine to detect dangerous files, outdated software, and common misconfigurations.

Instructions

Run a Nikto web server vulnerability scan against a target URL on the remote Kali machine. Detects dangerous files, outdated software, and common web server misconfigurations.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sslNoForce SSL/TLS even on non-443 ports
urlYesTarget URL including scheme. Example: "http://192.168.1.10" or "https://target.example.com"
portNoOverride the default port derived from the URL scheme (80/443)
extra_argsNoAdditional nikto flags. Example: "-Tuning 1" to limit tests. No shell metacharacters.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full behavioral burden. It usefully discloses that execution happens on a remote Kali host and that it probes for dangerous files and misconfigurations, but says nothing about intrusiveness, scan duration, authentication/network prerequisites, or that extra_args can meaningfully change behavior. Some context is added, but key operational traits are missing.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two tight sentences, front-loaded with the action and target, followed by the finding categories. No filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a four-parameter scanning tool with no annotations and no output schema, the description covers purpose and detection scope but omits runtime expectations, safety profile, and how to interpret results. Adequate as a minimum-viable definition, with clear gaps for an agent that must decide between it and nine sibling tools.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents url, port, ssl, and extra_args with examples. The description adds no parameter-level detail beyond the schema, which is the baseline-3 case when structured fields do the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific tool (Nikto), a specific verb (run), a specific resource (web server vulnerability scan), and the execution location (remote Kali machine), plus the classes of findings it produces. This distinguishes it from nmap_scan (port scanning), whatweb_fingerprint (fingerprinting), and sqlmap_scan (SQL injection).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description says what the tool does but never states when to reach for it versus siblings like nmap_scan, whatweb_fingerprint, or the generic dast_scan. There are no prerequisites, no exclusions, and no routing guidance for an agent choosing among ten scan/attack tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.