start_session
Initiate a development session by specifying project ID and session goals, enabling consistent coding context using the MCP Project Context Server.
Instructions
Start a new development session
Input Schema
Name | Required | Description | Default |
---|---|---|---|
goals | Yes | Session goals | |
projectId | Yes | Project ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"goals": {
"description": "Session goals",
"items": {
"type": "string"
},
"type": "array"
},
"projectId": {
"description": "Project ID",
"type": "string"
}
},
"required": [
"projectId",
"goals"
],
"type": "object"
}