Skip to content
VS Code

openemis for VS Code

io.github.tixuz/openemis

Read-only MCP server for OpenEMIS — free open-source school management system. 675 resources.

client:VS Code transport:stdio runtime:npm

Install openemis in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "openemis-base-url",
      "description": "OPENEMIS_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openemis-username",
      "description": "OPENEMIS_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openemis-password",
      "description": "OPENEMIS_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openemis-api-key",
      "description": "OPENEMIS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openemis-timeout-ms",
      "description": "OPENEMIS_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openemis-log-verbose",
      "description": "OPENEMIS_LOG_VERBOSE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openemis-log-file",
      "description": "OPENEMIS_LOG_FILE",
      "password": true
    }
  ],
  "servers": {
    "openemis": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "openemis-mcp"
      ],
      "env": {
        "OPENEMIS_BASE_URL": "${input:openemis-base-url}",
        "OPENEMIS_USERNAME": "${input:openemis-username}",
        "OPENEMIS_PASSWORD": "${input:openemis-password}",
        "OPENEMIS_API_KEY": "${input:openemis-api-key}",
        "OPENEMIS_TIMEOUT_MS": "${input:openemis-timeout-ms}",
        "OPENEMIS_LOG_VERBOSE": "${input:openemis-log-verbose}",
        "OPENEMIS_LOG_FILE": "${input:openemis-log-file}"
      }
    }
  }
}

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

openemis in other clients