@@ -43,9 +43,38 @@ npm run build
43
43
44
44
### Tool List
45
45
46
- - ` auth ` - Authenticate to MongoDB Atlas
47
- - ` list-clusters ` - Lists MongoDB Atlas clusters
48
- - ` list-projects ` - Lists MongoDB Atlas projects
46
+ #### MongoDB Atlas Tools
47
+
48
+ - ` atlas-auth ` - Authenticate to MongoDB Atlas
49
+ - ` atlas-list-clusters ` - Lists MongoDB Atlas clusters
50
+ - ` atlas-list-projects ` - Lists MongoDB Atlas projects
51
+ - ` atlas-inspect-cluster ` - Inspect a specific MongoDB Atlas cluster
52
+ - ` atlas-create-free-cluster ` - Create a free MongoDB Atlas cluster
53
+ - ` atlas-create-access-list ` - Configure IP/CIDR access list for MongoDB Atlas clusters
54
+ - ` atlas-inspect-access-list ` - Inspect IP/CIDR ranges with access to MongoDB Atlas clusters
55
+
56
+ #### MongoDB Database Tools
57
+
58
+ - ` connect ` - Connect to a MongoDB instance
59
+ - ` find ` - Run a find query against a MongoDB collection
60
+ - ` aggregate ` - Run an aggregation against a MongoDB collection
61
+ - ` count ` - Get the number of documents in a MongoDB collection
62
+ - ` insert-one ` - Insert a single document into a MongoDB collection
63
+ - ` insert-many ` - Insert multiple documents into a MongoDB collection
64
+ - ` create-index ` - Create an index for a MongoDB collection
65
+ - ` update-one ` - Update a single document in a MongoDB collection
66
+ - ` update-many ` - Update multiple documents in a MongoDB collection
67
+ - ` rename-collection ` - Rename a MongoDB collection
68
+ - ` delete-one ` - Delete a single document from a MongoDB collection
69
+ - ` delete-many ` - Delete multiple documents from a MongoDB collection
70
+ - ` drop-collection ` - Remove a collection from a MongoDB database
71
+ - ` drop-database ` - Remove a MongoDB database
72
+ - ` list-databases ` - List all databases for a MongoDB connection
73
+ - ` list-collections ` - List all collections for a given database
74
+ - ` collection-indexes ` - Describe the indexes for a collection
75
+ - ` collection-schema ` - Describe the schema for a collection
76
+ - ` collection-storage-size ` - Get the size of a collection in MB
77
+ - ` db-stats ` - Return statistics about a MongoDB database
49
78
50
79
## 👩💻 Client Integration (Use the server!)
51
80
0 commit comments