sio-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ANDREW_ID | No | AndrewID used for SIO login | |
| ANDREW_PASSWORD | No | Password used for SIO login |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_student_contextA | Who the student is right now: name, current term, class level, major, college, advisor, units carried, and expected graduation. Call this first in any conversation touching academics, and whenever you
need the current semester to pass as a |
| get_scheduleA | The student's course schedule: sections with meeting days, start/end times, building/room, instructors (with emails), and add/drop/withdrawal deadlines per section. Call this when the user asks about their classes, class times, locations,
instructors, or what their day/week looks like. |
| get_schedule_icsA | The official iCalendar (.ics) export of the schedule, with weekly RRULEs bounded to the semester. Call this when integrating with calendar tools or when the user wants their schedule as calendar events — it is authoritative on semester start and end dates, which get_schedule does not carry. Times are local America/New_York wall-clock times. |
| get_gradesA | Grades for one semester: per-course grade option, units, mid-semester and final grades, plus the semester and cumulative QPA summary. Call this when the user asks about grades, QPA/GPA, or units for a
semester. Grades show "NA" until posted. Omit |
| get_advanced_placementA | AP and transfer credit: courses credited (with units) and the AP exam scores behind them. Call this when the user asks about AP credit, transfer credit, or exam scores. These units are not graded and do not factor into QPA. |
| get_enrollment_statusA | Enrollment record for a semester: enrolled/registered status, units carried vs maximum, class level, degree/college/major, and advisor. Call this for questions about enrollment verification, unit load, or program/major details beyond what get_student_context gives. |
| get_account_activityA | The student account ledger, grouped by fiscal year: tuition, fees, housing, grants, loans, and payments, with the running balance. Call this when the user asks about their bill, balance, charges, payments, or financial aid disbursements. Amounts are USD decimal strings; charges are positive, payments and aid are negative. |
| get_campus_lifeA | Housing assignment, and Plaid Cash balance. Call this when the user asks where they live on campus or about their Plaid Cash. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool targets a distinct data domain (schedule, grades, billing, etc.), but get_student_context and get_enrollment_status overlap on class level, major, and advisor. The descriptions clarify when to use which, so confusion is unlikely.
Every tool follows the exact same get_<domain> pattern with clear, descriptive nouns. This is perfectly consistent and predictable.
Eight tools is well within the ideal range for a student data server. Each tool covers a meaningful data area without redundancy or bloat.
The server covers the full read-only student information surface: context, schedule, grades, credits, enrollment, billing, and campus life. No obvious missing queries for the stated purpose.