update_section_summary
Modify section summaries in RBT documents by providing new text content while maintaining document structure and reducing processing overhead.
Instructions
Update section summary text.
Args:
project_id: Project identifier
section_id: Section ID to update
new_summary: New summary text
feature_id: Feature identifier (for RBT documents)
doc_type: Document type - REQ/BP/TASK (for RBT documents)
file_path: File path relative to docs/ (for general documents)
Returns:
Success message
Example:
update_section_summary(
project_id="knowledge-smith",
feature_id="rbt-mcp-tool",
doc_type="BP",
section_id="sec-components",
new_summary="Updated component specifications with new requirements"
)
@REQ: REQ-rbt-mcp-tool
@BP: BP-rbt-mcp-tool
@TASK: TASK-007-UpdateSectionSummaryTool-Server-Setup
Input Schema
Name | Required | Description | Default |
---|---|---|---|
doc_type | No | ||
feature_id | No | ||
file_path | No | ||
new_summary | Yes | ||
project_id | Yes | ||
section_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"doc_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Doc Type"
},
"feature_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Feature Id"
},
"file_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "File Path"
},
"new_summary": {
"title": "New Summary",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
},
"section_id": {
"title": "Section Id",
"type": "string"
}
},
"required": [
"project_id",
"section_id",
"new_summary"
],
"type": "object"
}