createClientReport
Generate detailed penetration testing reports for clients by compiling scan results, executive summaries, and actionable recommendations with the Pentest MCP server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assessmentType | Yes | Type of assessment | |
client | Yes | Client name for the report | |
recommendations | No | List of recommendations | |
scanIds | Yes | IDs of scans to include | |
summary | No | Executive summary | |
title | Yes | Title of the assessment report |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"assessmentType": {
"description": "Type of assessment",
"type": "string"
},
"client": {
"description": "Client name for the report",
"type": "string"
},
"recommendations": {
"description": "List of recommendations",
"items": {
"type": "string"
},
"type": "array"
},
"scanIds": {
"description": "IDs of scans to include",
"items": {
"type": "string"
},
"type": "array"
},
"summary": {
"description": "Executive summary",
"type": "string"
},
"title": {
"description": "Title of the assessment report",
"type": "string"
}
},
"required": [
"client",
"title",
"assessmentType",
"scanIds"
],
"type": "object"
}