check_cookies
Verify authentication cookies are set for secure access to N Lobby school portal data including announcements, schedules, and learning resources.
Instructions
Check if authentication cookies are set
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/server.ts:895-905 (handler)Handler for the 'check_cookies' tool. Retrieves cookie status from the NLobbyApi instance and returns it as text content.case "check_cookies": { const cookieStatus = this.api.getCookieStatus(); return { content: [ { type: "text", text: `Cookie status: ${cookieStatus}`, }, ], }; }
- src/server.ts:328-335 (registration)Registration of the 'check_cookies' tool in the ListToolsRequestSchema response, including its name, description, and empty input schema (no parameters required).{ name: "check_cookies", description: "Check if authentication cookies are set", inputSchema: { type: "object", properties: {}, }, },
- src/server.ts:331-334 (schema)Input schema for 'check_cookies' tool: an empty object (no input parameters).inputSchema: { type: "object", properties: {}, },