postExamsidSessionssessionIdFeedback
Provide teacher feedback and assign grades for specific exam questions to evaluate student performance in exam sessions.
Instructions
Set teacher feedback and/or a grade for a specific question in an exam session.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| sessionId | Yes | ||
| question | No | Question ID to provide feedback for | |
| pointsAwarded | No | Points to award for the answer | |
| feedback | No | Optional teacher feedback for the answer |
Implementation Reference
- src/server.py:96-102 (registration)Registration of all MCP tools, including "postExamsidSessionssessionIdFeedback", generated dynamically from the fetched OpenAPI specification using FastMCP.from_openapi. This tool corresponds to the POST /exams/{id}/sessions/{sessionId}/feedback endpoint in the Examplary API.print("Creating MCP server from OpenAPI spec...", file=sys.stderr) mcp = FastMCP.from_openapi( openapi_spec=openapi_spec, client=client, name="Examplary" )