get_codegen_session
Retrieve details of a specific code generation session by its ID, enabling efficient tracking and management of browser automation tasks within the Playwright MCP Server.
Instructions
Get information about a code generation session
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sessionId | Yes | ID of the session to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"sessionId": {
"description": "ID of the session to retrieve",
"type": "string"
}
},
"required": [
"sessionId"
],
"type": "object"
}