provide_clarification
Clarify coding features by providing detailed answers to specific questions, ensuring accurate implementation within the Vibe-Coder MCP Server's structured workflow.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
answer | Yes | ||
featureId | Yes | ||
question | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"answer": {
"minLength": 1,
"type": "string"
},
"featureId": {
"minLength": 1,
"type": "string"
},
"question": {
"minLength": 1,
"type": "string"
}
},
"required": [
"featureId",
"question",
"answer"
],
"type": "object"
}