campus-course
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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 |
|---|---|
| search_coursesA | 根据课程名称、课程编号或教师姓名搜索课程,关键词支持模糊匹配。 例如:关键词“张”可找出张老师的所有课程;关键词“python”可找出 Python 程序设计课程。返回匹配课程的编号、名称、教师、上课时间、 地点与学分列表;无匹配时返回提示信息。 |
| get_courseA | 按课程编号精确查询某一门课程的详细信息(含任课教师信息)。 |
| list_courses_by_weekdayA | 查询星期几有哪些课(当天课程表)。 weekday 支持“周一”“星期一”“Mon”“1”等常见写法,按上课时间排序返回 课程编号、名称、教师、节次时间、地点与学分;当天没课时返回提示信息。 |
| get_teacherA | 按教师姓名(如“李老师”)或工号(如 T002)查询教师信息。 返回教师职称、院系、邮箱,以及该教师本学期所授全部课程列表。 |
| list_assignmentsA | 查询课程作业列表及截止日期;不传 course_id 时返回全部课程的作业。 |
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 5 tools
每个工具面向明确的资源与动作:课程搜索、课程详情、按天查课表、教师信息、作业列表。search_courses和list_courses_by_weekday虽然都返回课程列表,但一个按关键词模糊匹配,一个按星期筛选,描述足以消除歧义。
所有工具均采用动词_名词的清晰模式(search/get/list),命名风格统一,动词准确反映操作类型,没有混合大小写或混乱命名。
5个工具覆盖课程查询场景的核心需求,数量精炼,每个工具都有独立用途,没有冗余或明显缺失。
覆盖了课程搜索、详情、按星期课表、教师信息及作业列表,足以支撑常见查询场景。但缺少一个无筛选的“列出全部课程”工具,可能需依赖search_courses或list_courses_by_weekday迂回实现。