moodle mcp server aql for VS Code
io.github.csmediapro/moodle-mcp-server-aql
Query Moodle LMS data through natural language. Attach your agent to your LMS data.
client:VS Code
transport:stdio
runtime:npm
Install moodle mcp server aql in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "moodle-url",
"description": "MOODLE_URL",
"password": true
},
{
"type": "promptString",
"id": "moodle-token",
"description": "MOODLE_TOKEN",
"password": true
}
],
"servers": {
"moodle-mcp-server-aql": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"moodle-mcp-server-aql"
],
"env": {
"MOODLE_URL": "${input:moodle-url}",
"MOODLE_TOKEN": "${input:moodle-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs