close-app
Shut down a running MCP DOS server by specifying the port. Use this to resolve errors when starting a new server for classic DOS games like DOOM or Tetris.
Instructions
Close an existing running mcp-dos server. You can use this tool if you are getting erros when starting a new server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
port | Yes | The port of the app to close. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"port": {
"description": "The port of the app to close.",
"type": "number"
}
},
"required": [
"port"
],
"type": "object"
}