update_active_context
Modify the active context file to track ongoing tasks, known issues, and next steps, ensuring centralized and up-to-date information in the MCP server with SSH support.
Instructions
Update the active context file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issues | No | List of known issues | |
nextSteps | No | List of next steps | |
tasks | No | List of ongoing tasks |
Input Schema (JSON Schema)
{
"properties": {
"issues": {
"description": "List of known issues",
"items": {
"type": "string"
},
"type": "array"
},
"nextSteps": {
"description": "List of next steps",
"items": {
"type": "string"
},
"type": "array"
},
"tasks": {
"description": "List of ongoing tasks",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}