Skip to content
VS Code

getcourse mcp for VS Code

io.github.theyahia/getcourse-mcp

MCP server for GetCourse API -- users, deals.

client:VS Code transport:stdio runtime:npm

Install getcourse mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "getcourse-domain",
      "description": "GETCOURSE_DOMAIN",
      "password": true
    }
  ],
  "servers": {
    "getcourse-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@theyahia/getcourse-mcp"
      ],
      "env": {
        "GETCOURSE_DOMAIN": "${input:getcourse-domain}"
      }
    }
  }
}

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

getcourse mcp in other clients