Skip to content
VS Code

TalentLMS for VS Code

io.github.mindstone/mcp-server-talentlms

TalentLMS MCP server: users, courses, groups, branches, reporting, and assessments

client:VS Code transport:stdio runtime:npm

Install TalentLMS in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "talentlms-api-key",
      "description": "TALENTLMS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "talentlms-domain",
      "description": "TALENTLMS_DOMAIN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "talentlms-request-timeout",
      "description": "TALENTLMS_REQUEST_TIMEOUT",
      "password": true
    }
  ],
  "servers": {
    "mcp-server-talentlms": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@mindstone/mcp-server-talentlms"
      ],
      "env": {
        "TALENTLMS_API_KEY": "${input:talentlms-api-key}",
        "TALENTLMS_DOMAIN": "${input:talentlms-domain}",
        "TALENTLMS_REQUEST_TIMEOUT": "${input:talentlms-request-timeout}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

TalentLMS in other clients