save_document
Store generated documentation in a specified file path, linking it to a feature ID and document type for structured coding workflows on the Vibe-Coder MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
documentType | Yes | ||
featureId | Yes | ||
filePath | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"documentType": {
"minLength": 1,
"type": "string"
},
"featureId": {
"minLength": 1,
"type": "string"
},
"filePath": {
"minLength": 1,
"type": "string"
}
},
"required": [
"featureId",
"documentType"
],
"type": "object"
}