startMongoServer
Launch a local MongoDB-compatible server that generates realistic data from statistical models, enabling database operations without actual storage requirements.
Instructions
Start a local MongoDB-compatible server that generates data from statistical models
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | No | Default database name | test |
port | No | Port to listen on (0 for auto) |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"default": "test",
"description": "Default database name",
"type": "string"
},
"port": {
"default": 0,
"description": "Port to listen on (0 for auto)",
"type": "integer"
}
},
"type": "object"
}