QMYZ-MCP
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 |
|---|---|
| get_coursesC | 获取课程名称与ID |
| get_questionC | 获取课程题目 |
| submit_questionC | 提交课程题目答案, 返回答题结果。提交的answer应为选项的字母,例如 "A" 或 "B" |
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 3 tools
Each tool has a clearly distinct purpose: get_courses retrieves course metadata, get_question fetches questions for a specific course, and submit_question submits answers to specific questions. There is no overlap in functionality, and the descriptions clearly differentiate their roles in the workflow.
All tool names follow a consistent verb_noun pattern with snake_case (get_courses, get_question, submit_question). The naming is predictable and readable, making it easy for agents to understand the action each tool performs.
With only 3 tools, the server feels thin for a course/quiz management domain. While the tools cover core operations, additional functionalities like updating courses or managing user sessions might be expected. However, the count is not critically low, just borderline minimal.
The toolset covers a basic workflow: list courses, get questions, and submit answers. Minor gaps exist, such as no tools for creating or deleting courses, or handling user authentication beyond JSESSIONID. Agents can work around these, but the surface is not fully comprehensive for the domain.