check_syntax
Verify the syntax of an Ansible playbook before execution using MCP SysOperator, ensuring error-free and valid playbook deployment.
Instructions
Check syntax of an Ansible playbook without executing it
Input Schema
Name | Required | Description | Default |
---|---|---|---|
playbook | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"playbook": {
"minLength": 1,
"type": "string"
}
},
"required": [
"playbook"
],
"type": "object"
}