Skip to content
VS Code

openemis pro for VS Code

io.github.tixuz/openemis-pro

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

client:VS Code transport:stdio runtime:npm

Install openemis pro in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "openemis-base-url",
      "description": "OPENEMIS_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openemis-api-key",
      "description": "OPENEMIS_API_KEY",
      "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-timeout-ms",
      "description": "OPENEMIS_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openemis-core-in-operator",
      "description": "OPENEMIS_CORE_IN_OPERATOR",
      "password": true
    }
  ],
  "servers": {
    "openemis-pro": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "openemis-mcp-pro"
      ],
      "env": {
        "OPENEMIS_BASE_URL": "${input:openemis-base-url}",
        "OPENEMIS_API_KEY": "${input:openemis-api-key}",
        "OPENEMIS_USERNAME": "${input:openemis-username}",
        "OPENEMIS_PASSWORD": "${input:openemis-password}",
        "OPENEMIS_TIMEOUT_MS": "${input:openemis-timeout-ms}",
        "OPENEMIS_CORE_IN_OPERATOR": "${input:openemis-core-in-operator}"
      }
    }
  }
}

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

openemis pro in other clients