Skip to content
VS Code

İTÜ MCP for VS Code

io.github.yatuk/itu-mcp

İTÜ Ninova LMS ve OBS öğrenci portalı — dersler, notlar, yoklama, yemekhane, kampüs kart, GPA

client:VS Code transport:stdio runtime:pypi

Install İTÜ MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ninova-username",
      "description": "NINOVA_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ninova-password",
      "description": "NINOVA_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "itu-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "itu-mcp"
      ],
      "env": {
        "NINOVA_USERNAME": "${input:ninova-username}",
        "NINOVA_PASSWORD": "${input:ninova-password}"
      }
    }
  }
}

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

İTÜ MCP in other clients