append_list_item
Add new items to existing lists in RBT documents to update requirements, business processes, or tasks without modifying the entire document structure.
Instructions
Append item to list block.
Args:
project_id: Project identifier
block_id: List block ID
item: Item text to append
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:
append_list_item(
project_id="knowledge-smith",
feature_id="rbt-mcp-tool",
doc_type="REQ",
block_id="blk-func-req-list",
item="New functional requirement item"
)
@REQ: REQ-rbt-mcp-tool
@BP: BP-rbt-mcp-tool
@TASK: TASK-012-AppendListItemTool
Input Schema
Name | Required | Description | Default |
---|---|---|---|
block_id | Yes | ||
doc_type | No | ||
feature_id | No | ||
file_path | No | ||
item | Yes | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"block_id": {
"title": "Block Id",
"type": "string"
},
"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"
},
"item": {
"title": "Item",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id",
"block_id",
"item"
],
"type": "object"
}