@@ -8,7 +8,7 @@ import { ensureCurrentIpInAccessList } from "../../../common/atlas/accessListUti
88import { AtlasArgs , CommonArgs } from "../../args.js" ;
99
1010export const CreateDBUserArgs = {
11- projectId : AtlasArgs . projectId ( ) . describe ( "Atlas project ID" ) ,
11+ projectId : AtlasArgs . projectId ( ) ,
1212 username : AtlasArgs . username ( ) . describe ( "Username for the new user" ) ,
1313 // Models will generate overly simplistic passwords like SecurePassword123 or
1414 // AtlasPassword123, which are easily guessable and exploitable. We're instructing
@@ -26,7 +26,7 @@ export const CreateDBUserArgs = {
2626 collectionName : CommonArgs . string ( ) . describe ( "Collection name" ) . optional ( ) ,
2727 } )
2828 )
29- . describe ( "Roles for the new user" ) ,
29+ . describe ( "Roles for the new database user" ) ,
3030 clusters : z
3131 . array ( AtlasArgs . clusterName ( ) )
3232 . describe ( "Clusters to assign the user to, leave empty for access to all clusters" )
@@ -35,7 +35,7 @@ export const CreateDBUserArgs = {
3535
3636export class CreateDBUserTool extends AtlasToolBase {
3737 public name = "atlas-create-db-user" ;
38- protected description = "Create an MongoDB Atlas database user" ;
38+ protected description = "Create a MongoDB Atlas database user" ;
3939 public operationType : OperationType = "create" ;
4040 protected argsShape = {
4141 ...CreateDBUserArgs ,
0 commit comments