Moodle MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MOODLE_API_URL | Yes | The URL of your Moodle API endpoint (e.g., https://your-moodle.com/webservice/rest/server.php) | |
| MOODLE_API_TOKEN | Yes | Your Moodle API token with appropriate permissions | |
| MOODLE_COURSE_ID | Yes | The ID of the Moodle course to manage |
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
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_studentsB | Obtiene la lista de estudiantes inscritos en el curso configurado |
| get_assignmentsB | Obtiene la lista de tareas asignadas en el curso configurado |
| get_quizzesB | Obtiene la lista de quizzes en el curso configurado |
| get_submissionsC | Obtiene las entregas de tareas en el curso configurado |
| provide_feedbackC | Proporciona feedback sobre una tarea entregada por un estudiante |
| get_submission_contentC | Obtiene el contenido detallado de una entrega específica, incluyendo texto y archivos adjuntos |
| get_quiz_gradeB | Obtiene la calificación de un estudiante en un quiz específico |
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 7 tools
Most tools have distinct purposes targeting different Moodle resources like assignments, quizzes, students, and submissions, but get_submissions and get_submission_content could be slightly confusing as the latter seems like a more detailed version of the former. The descriptions clarify the difference, but some overlap exists.
All tool names follow a consistent verb_noun pattern using snake_case, starting with 'get_' for retrieval operations and 'provide_' for feedback. This uniformity makes the set predictable and easy to navigate for an agent.
With 7 tools, the count is reasonable for a Moodle server focused on course management tasks. It covers core operations like retrieving assignments, quizzes, students, and submissions, though it might be slightly thin if more advanced features like creating or updating resources are expected.
The server provides good read-only coverage for viewing course elements and feedback, but lacks create, update, or delete operations for resources like assignments or quizzes. This creates notable gaps in CRUD functionality, which could limit agent workflows in a full course management context.