setMode
Switch between 'student' and 'professional' modes to tailor the Pentest MCP server's functionality for educational or advanced penetration testing workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mode | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"mode": {
"enum": [
"student",
"professional"
],
"type": "string"
}
},
"required": [
"mode"
],
"type": "object"
}