Skip to main content
Glama

Moodle MCP 服务器

MCP(模型上下文协议)服务器使 LLM 能够与 Moodle 平台交互来管理课程、学生、作业和测验。

特征

学生管理工具

  • list_students - 检索参加该课程的学生名单

    • 显示每个学生的 ID、姓名、电子邮件和上次访问时间

作业管理工具

  • get_assignments - 检索课程中所有可用的作业

    • 包括 ID、姓名、描述、截止日期和最高成绩等信息

  • get_student_submissions - 检查学生提交的特定作业

    • 需要作业 ID 和可选的学生 ID

  • provide_assignment_feedback - 为学生的提交提供成绩和评论

    • 需要学生 ID、作业 ID、成绩和反馈意见

测验管理工具

  • get_quizzes - 检索课程中所有可用的测验

    • 包括 ID、名称、描述、开始/结束日期和最高等级等信息

  • get_quiz_attempts - 检查学生在特定测验中的尝试情况

    • 需要测验 ID 和可选的学生 ID

  • provide_quiz_feedback - 为测验尝试提供评论

    • 需要尝试 ID 和反馈意见

Related MCP server: Moodle MCP

要求

  • Node.js(v14 或更高版本)

  • 具有适当权限的 Moodle API 令牌

  • Moodle 课程 ID

安装

  1. 克隆此存储库:

git clone https://github.com/your-username/moodle-mcp-server.git
cd moodle-mcp-server
  1. 安装依赖项:

npm install
  1. 创建具有以下配置的.env文件:

MOODLE_API_URL=https://your-moodle.com/webservice/rest/server.php
MOODLE_API_TOKEN=your_api_token
MOODLE_COURSE_ID=1  # Replace with your course ID
  1. 构建服务器:

npm run build

与 Claude 一起使用

要与 Claude Desktop 一起使用,请添加服务器配置:

在 MacOS 上: ~/Library/Application Support/Claude/claude_desktop_config.json
在 Windows 上: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "moodle-mcp-server": {
      "command": "/path/to/node",
      "args": [
        "/path/to/moodle-mcp-server/build/index.js"
      ],
      "env": {
        "MOODLE_API_URL": "https://your-moodle.com/webservice/rest/server.php",
        "MOODLE_API_TOKEN": "your_moodle_api_token",
        "MOODLE_COURSE_ID": "your_course_id"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

对于 Windows 用户,路径将使用反斜杠:

{
  "mcpServers": {
    "moodle-mcp-server": {
      "command": "C:\\path\\to\\node.exe",
      "args": [
        "C:\\path\\to\\moodle-mcp-server\\build\\index.js"
      ],
      "env": {
        "MOODLE_API_URL": "https://your-moodle.com/webservice/rest/server.php",
        "MOODLE_API_TOKEN": "your_moodle_api_token",
        "MOODLE_COURSE_ID": "your_course_id"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

配置完成后,Claude 将能够与您的 Moodle 课程进行交互:

  • 查看学生名单及其提交的内容

  • 提供作业评论和成绩

  • 检查测验尝试并提供反馈

发展

对于使用自动重建的开发:

npm run watch

调试

MCP 服务器通过 stdio 进行通信,这会增加调试难度。我们建议使用MCP 检查器:

npm run inspector

检查器将提供一个 URL 来访问浏览器中的调试工具。

获取 Moodle API 令牌

  1. 以管理员身份登录您的 Moodle 站点

  2. 前往“站点管理”>“插件”>“Web 服务”>“管理令牌”

  3. 创建具有管理课程所需权限的新令牌

  4. 复制生成的令牌并将其添加到您的.env文件中

安全

  • 切勿分享您的.env文件或 Moodle API 令牌

  • 确保 MCP 服务器只能访问其需要管理的课程

  • 使用具有最低必要权限的令牌

执照

麻省理工学院

Available Tools

7 tools
get_assignmentsB

Obtiene la lista de tareas asignadas en el curso configurado

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It states it 'obtiene' (gets/retrieves) which implies a read-only operation, but doesn't disclose any behavioral traits like whether it requires authentication, returns paginated results, includes filtering options, or has rate limits. For a tool with zero annotation coverage, this is a significant gap in behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence in Spanish that directly states what the tool does. It's front-loaded with the core action and resource, with no wasted words or unnecessary elaboration. Every part of the sentence contributes to understanding the tool's function.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 0 parameters, no annotations, and no output schema, the description is minimally adequate. It explains what the tool retrieves (assigned tasks in a configured course), but lacks details on behavioral aspects, return format, or differentiation from siblings. For a simple read operation, it meets basic needs but leaves gaps in full context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has 0 parameters with 100% schema description coverage, so the schema fully documents the lack of parameters. The description doesn't need to add parameter semantics, and it correctly implies no inputs are required by not mentioning any. Baseline for 0 parameters is 4, as the description appropriately focuses on the tool's purpose rather than parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('obtiene' - gets) and resource ('lista de tareas asignadas' - list of assigned tasks) with context ('en el curso configurado' - in the configured course). It's specific about what it retrieves but doesn't explicitly distinguish from sibling tools like get_submissions or get_quizzes, which might retrieve related but different resources.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like get_submissions or get_quizzes. It mentions 'en el curso configurado' which implies a prerequisite context of a configured course, but doesn't specify when this is the appropriate tool for task-related queries versus other sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_quiz_gradeB

Obtiene la calificación de un estudiante en un quiz específico

ParametersJSON Schema
NameRequiredDescriptionDefault
studentIdYesID del estudiante
quizIdYesID del quiz

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It states it 'gets' a grade, implying a read-only operation, but doesn't disclose behavioral traits like authentication needs, rate limits, error handling, or what happens if the student or quiz doesn't exist. For a tool with no annotations, this leaves significant gaps in understanding its behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence in Spanish that directly states the tool's purpose. It is front-loaded with no unnecessary words, making it highly concise and well-structured for quick understanding.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity (2 required parameters, no output schema, no annotations), the description is minimally adequate. It covers the basic purpose but lacks details on usage guidelines, behavioral transparency, and output format. Without annotations or an output schema, more context would be helpful, but it's not severely incomplete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, with both parameters (studentId and quizId) clearly documented in the schema. The description adds no additional meaning beyond implying these IDs are needed, so it meets the baseline of 3 where the schema does the heavy lifting without extra value from the description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Obtiene la calificación de un estudiante en un quiz específico' (Gets a student's grade on a specific quiz). It specifies the verb (obtiene/gets) and resource (calificación/grade) with context (student, quiz). However, it doesn't explicitly differentiate from sibling tools like get_submissions or get_quizzes, which might also involve grades or quizzes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, such as needing student and quiz IDs, or compare it to siblings like get_submissions (which might return grades among other data) or get_quizzes (which might list quizzes without grades). Usage is implied but not explicitly stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_quizzesB

Obtiene la lista de quizzes en el curso configurado

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It only states what the tool does ('obtiene la lista') but doesn't describe important behavioral aspects: whether this is a read-only operation, what format the list returns, whether there are pagination limits, authentication requirements, or error conditions. For a tool with zero annotation coverage, this is inadequate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient Spanish sentence that directly states the tool's purpose with no wasted words. It's appropriately sized for a simple retrieval tool and gets straight to the point without unnecessary elaboration.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what 'curso configurado' means (is this a pre-configured course ID? current context?), what format the quiz list returns, or any limitations. For a tool that presumably returns data, the description should provide more context about the output.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters (schema coverage 100%), so the description doesn't need to explain parameters. The baseline for zero parameters is 4. The description appropriately focuses on the tool's purpose rather than parameter documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Obtiene' - gets/retrieves) and the resource ('lista de quizzes en el curso configurado' - list of quizzes in the configured course). It distinguishes itself from siblings like get_assignments or get_quiz_grade by specifying it retrieves quizzes rather than assignments or grades. However, it doesn't specify whether this is a filtered list or complete list, which prevents a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (like needing a configured course), whether it should be used before or after other tools, or how it differs from similar tools like get_assignments. The agent must infer usage from the tool name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_studentsB

Obtiene la lista de estudiantes inscritos en el curso configurado

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden but offers minimal behavioral information. It states it retrieves a list but doesn't disclose pagination behavior, authentication requirements, rate limits, error conditions, or what 'curso configurado' means operationally. The description doesn't contradict annotations (none exist), but provides inadequate behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence in Spanish that states the core purpose. It's appropriately concise for a simple retrieval operation, though it could potentially be more front-loaded with key behavioral information given the lack of annotations.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no annotations, no output schema, and minimal description, this is incomplete. The description doesn't explain what format the student list returns, what fields are included, whether it's paginated, or how 'curso configurado' is determined. Given the complexity of student data retrieval, more context is needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters with 100% schema description coverage, so the schema already fully documents the parameter situation. The description appropriately doesn't discuss parameters since none exist, earning a baseline score of 4 for zero-parameter tools.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('obtiene' - gets/retrieves) and resource ('lista de estudiantes inscritos en el curso configurado' - list of students enrolled in the configured course). It's specific about what it retrieves, though it doesn't explicitly differentiate from sibling tools like get_assignments or get_submissions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided about when to use this tool versus alternatives. The description doesn't mention prerequisites, context for 'curso configurado' (configured course), or how this differs from other student-related operations that might exist in the system.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_submission_contentC

Obtiene el contenido detallado de una entrega específica, incluyendo texto y archivos adjuntos

ParametersJSON Schema
NameRequiredDescriptionDefault
studentIdYesID del estudiante
assignmentIdYesID de la tarea

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool retrieves detailed content including text and attachments, which implies a read-only operation, but doesn't specify if it requires authentication, has rate limits, returns paginated results, or handles errors. For a tool with no annotation coverage, this leaves significant gaps in understanding its behavior beyond basic functionality.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence in Spanish that front-loads the core purpose. It avoids redundancy and wastes no words, making it easy to parse. However, it could be slightly more structured by explicitly separating functionality from context, but this is minor.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (2 parameters, no output schema, no annotations), the description is minimally adequate. It explains what the tool does but lacks details on output format (e.g., structure of returned content), error handling, or integration with siblings. Without annotations or output schema, more context on behavior would improve completeness, but it meets the basic threshold for a simple retrieval tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with clear descriptions for studentId and assignmentId. The description adds no additional parameter semantics beyond what the schema provides, such as format examples or constraints. With high schema coverage, the baseline score is 3, as the description doesn't compensate but also doesn't detract from the schema's documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Obtiene el contenido detallado de una entrega específica, incluyendo texto y archivos adjuntos' (Gets the detailed content of a specific submission, including text and attached files). It specifies the verb 'obtiene' (gets) and resource 'contenido de una entrega' (submission content), distinguishing it from sibling tools like get_submissions (likely listing submissions) or get_assignments (getting assignment details). However, it doesn't explicitly differentiate from all siblings, such as get_quiz_grade, which might also retrieve submission-related data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, such as needing a specific submission ID or context from other tools, nor does it compare to siblings like get_submissions (which might list submissions without detailed content) or provide_feedback (which could involve submission content). Usage is implied by the description but not explicitly stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_submissionsC

Obtiene las entregas de tareas en el curso configurado

ParametersJSON Schema
NameRequiredDescriptionDefault
studentIdNoID opcional del estudiante. Si no se proporciona, se devolverán entregas de todos los estudiantes
assignmentIdNoID opcional de la tarea. Si no se proporciona, se devolverán todas las entregas

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It states it retrieves submissions but doesn't describe what 'submissions' include (files, grades, comments?), whether it's paginated, requires authentication, has rate limits, or returns errors. The phrase 'en el curso configurado' implies some configuration context but doesn't explain how that works.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient Spanish sentence that directly states the tool's purpose. It's appropriately sized for a retrieval tool with documented parameters. However, it could be slightly more front-loaded by specifying it's a filtered retrieval operation rather than just 'gets submissions.'

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a retrieval tool with no annotations and no output schema, the description is insufficient. It doesn't explain what constitutes a 'submission' (metadata, content, grades?), the return format, error conditions, or authentication requirements. The context of 'configured course' is mentioned but not explained. With 2 parameters and no structured output documentation, more completeness is needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already fully documents both optional parameters (studentId and assignmentId) with clear descriptions of their optional nature and filtering behavior. The description adds no parameter-specific information beyond what's in the schema, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('obtiene' - gets/retrieves) and resource ('entregas de tareas' - assignment submissions) in the configured course. It specifies the scope ('en el curso configurado') which helps distinguish it from general submission tools. However, it doesn't explicitly differentiate from sibling tools like get_submission_content or get_assignments.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like get_submission_content (which presumably retrieves submission details/content) or get_assignments (which retrieves assignment metadata). There's no indication of prerequisites, timing considerations, or use case boundaries.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

provide_feedbackC

Proporciona feedback sobre una tarea entregada por un estudiante

ParametersJSON Schema
NameRequiredDescriptionDefault
studentIdYesID del estudiante
assignmentIdYesID de la tarea
gradeNoCalificación numérica a asignar
feedbackYesTexto del feedback a proporcionar

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the action ('Proporciona feedback') but doesn't describe what this entails: whether it creates new feedback, updates existing feedback, requires specific permissions, has side effects (e.g., notifying the student), or what the response looks like. For a mutation tool with zero annotation coverage, this is a significant gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence in Spanish that directly states the tool's purpose without unnecessary words. It's appropriately sized and front-loaded, with every part contributing to understanding the action and target.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (a mutation tool for providing feedback with grades), lack of annotations, and no output schema, the description is incomplete. It doesn't address behavioral aspects like permissions, side effects, or response format, leaving gaps for an AI agent to correctly invoke the tool in context with siblings.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with all parameters clearly documented in the input schema (studentId, assignmentId, grade, feedback). The description adds no additional meaning beyond what the schema provides, such as explaining relationships between parameters or usage examples. Baseline 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Proporciona' (provides) and the resource 'feedback sobre una tarea entregada por un estudiante' (feedback on a task submitted by a student), making the purpose specific and understandable. However, it doesn't explicitly differentiate from sibling tools like 'get_submissions' or 'get_quiz_grade', which are read-only operations, while this appears to be a write operation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing to check submission status first), exclusions (e.g., not for unsubmitted tasks), or comparisons to siblings like 'get_quiz_grade' (which might retrieve grades). Usage is implied but not explicitly stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 7 tool updates
    • First observedget_assignments
    • First observedget_quiz_grade
    • First observedget_quizzes
    • First observedget_students
    • First observedget_submission_content
    • First observedget_submissions
    • First observedprovide_feedback

TDQS

B3.3/5.0

Scored across 7 tools

Disambiguation4/5

The tools are mostly distinct with clear purposes: get_assignments, get_quizzes, get_students, get_submissions, and get_submission_content target different resources, while get_quiz_grade and provide_feedback focus on specific actions. However, get_submissions and get_submission_content could be slightly confusing as they both relate to submissions, though their descriptions clarify the difference between listing submissions and getting detailed content.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case, starting with 'get_' for retrieval operations and 'provide_' for the feedback action. This uniformity makes the tool set predictable and easy to understand, with no deviations in naming conventions.

Tool Count4/5

With 7 tools, the count is reasonable for a Moodle server focused on course management. It covers key areas like assignments, quizzes, students, and submissions, though it might be slightly thin for broader educational workflows, such as missing tools for creating or updating resources.

Completeness3/5

The tool set provides good read-only coverage for retrieving course data (assignments, quizzes, students, submissions) and includes a feedback action. However, there are notable gaps in CRUD operations: no tools for creating, updating, or deleting resources (e.g., assignments or quizzes), which limits agent functionality for full lifecycle management in the Moodle domain.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers