start_session
Begin a new AI coding session by defining a specific task, enabling persistent memory, project tracking, and safety controls within the MCP Memory Server environment.
Instructions
Start a new AI coding session with a specific task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task | Yes | Description of the task to work on |
Input Schema (JSON Schema)
{
"properties": {
"task": {
"description": "Description of the task to work on",
"type": "string"
}
},
"required": [
"task"
],
"type": "object"
}