stopMongoServer
Stop a running MongoDB-compatible server instance by specifying its port number to terminate database operations and free up system resources.
Instructions
Stop a running MongoDB-compatible server instance by port number
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| port | Yes | Port of the server to stop | 
Input Schema (JSON Schema)
{
  "properties": {
    "port": {
      "description": "Port of the server to stop",
      "type": "integer"
    }
  },
  "required": [
    "port"
  ],
  "type": "object"
}