ClassroomScribe
🎓 ClassroomScribe: Google Classroom MCP Server
Google Classroom integration for LLMs and AI agents (MCP). Pulls course lists, active coursework, announcements, and organizes upcoming assignments into prioritized TODO summaries.
🛠️ MCP Tools Exposed
list_courses: Lists all active classes you are enrolled in (returns Course names and IDs).list_assignments: Shows upcoming and past assignments across all classes or for a specific course ID.get_announcements: Fetches the latest stream posts and announcements for a specific class.summarize_todo: Gathers all pending assignments, calculates the time left, and structures them into a prioritized list.
🚀 Setup & Launch
Enable the Classroom API: Ensure Google Classroom API is enabled on your credentials project in the Google Cloud Console.
Authenticate Scopes: Run the local OAuth flow script:
./auth.pyFollow the browser prompts to authenticate the Classroom read-only scopes. This creates your local
token.json.Run the MCP Server:
python3 classroom_server.py
📂 File Layout
auth.py: Initial OAuth 2.0 flow handler.classroom_server.py: FastMCP server exposing Google Classroom tools.credentials.json: OAuth Client ID secrets (git-ignored).token.json: Generated authorization tokens (git-ignored).