n8n_generate_audit
Generate security audits for n8n instances to identify vulnerabilities and ensure compliance with best practices.
Instructions
Generate a security audit for your n8n instance
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| options | No | Audit options |
Implementation Reference
- src/n8n-client.ts:274-277 (handler)Actual implementation of the n8n audit generation, making the API call.
async generateAudit(options?: any): Promise<any> { const response = await this.client.post('/audit', options || {}); return response.data; } - src/index.ts:396-401 (handler)Tool handler execution block for n8n_generate_audit.
case 'n8n_generate_audit': { const result = await n8nClient.generateAudit(args?.options); return { content: [{ type: 'text', text: formatResponse(result) }], }; }