add_session_step
Track step completion and file modifications in a coding session using the MCP Memory Server. Enhances project awareness by recording actions and maintaining persistent memory for AI coding assistants.
Instructions
Record completion of a step in the current session
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Optional detailed description | |
filesModified | Yes | List of files that were modified | |
step | Yes | Description of the completed step |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Optional detailed description",
"type": "string"
},
"filesModified": {
"description": "List of files that were modified",
"items": {
"type": "string"
},
"type": "array"
},
"step": {
"description": "Description of the completed step",
"type": "string"
}
},
"required": [
"step",
"filesModified"
],
"type": "object"
}