prd_update
Modify PRD sections by updating content for specific features. Simplifies documentation management within the Kratos-MCP server, ensuring accurate and up-to-date project requirements.
Instructions
Update PRD content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Updated content | |
feature | Yes | Feature name | |
section | No | PRD section to update |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Updated content",
"type": "string"
},
"feature": {
"description": "Feature name",
"type": "string"
},
"section": {
"description": "PRD section to update",
"type": "string"
}
},
"required": [
"feature",
"content"
],
"type": "object"
}