open-dos
Launch and play classic DOS games like DOOM, Tetris, and Duke Nukem 3D using js-dos emulation. Use list to view available games and their specific keys for quick access.
Instructions
Open and play a DOS game using js-dos. Use list to see the exact key you need to use and the available games.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| game | Yes | DOS game slug to play (e.g., 'doom', 'doom2'). | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "game": {
      "description": "DOS game slug to play (e.g., 'doom', 'doom2').",
      "type": "string"
    }
  },
  "required": [
    "game"
  ],
  "type": "object"
}