Skip to content

Commit 88b5ce9

Browse files
committed
chore: update readme tools
1 parent 27bc07b commit 88b5ce9

File tree

1 file changed

+43
-3
lines changed

1 file changed

+43
-3
lines changed

README.md

Lines changed: 43 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,49 @@ npm run build
4343

4444
### Tool List
4545

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+
##### Connection
59+
- `connect` - Connect to a MongoDB instance
60+
61+
##### Read Operations
62+
- `find` - Run a find query against a MongoDB collection
63+
- `aggregate` - Run an aggregation against a MongoDB collection
64+
- `count` - Get the number of documents in a MongoDB collection
65+
66+
##### Create Operations
67+
- `insert-one` - Insert a single document into a MongoDB collection
68+
- `insert-many` - Insert multiple documents into a MongoDB collection
69+
- `create-index` - Create an index for a MongoDB collection
70+
71+
##### Update Operations
72+
- `update-one` - Update a single document in a MongoDB collection
73+
- `update-many` - Update multiple documents in a MongoDB collection
74+
- `rename-collection` - Rename a MongoDB collection
75+
76+
##### Delete Operations
77+
- `delete-one` - Delete a single document from a MongoDB collection
78+
- `delete-many` - Delete multiple documents from a MongoDB collection
79+
- `drop-collection` - Remove a collection from a MongoDB database
80+
- `drop-database` - Remove a MongoDB database
81+
82+
##### Metadata Operations
83+
- `list-databases` - List all databases for a MongoDB connection
84+
- `list-collections` - List all collections for a given database
85+
- `collection-indexes` - Describe the indexes for a collection
86+
- `collection-schema` - Describe the schema for a collection
87+
- `collection-storage-size` - Get the size of a collection in MB
88+
- `db-stats` - Return statistics about a MongoDB database
4989

5090
## 👩‍💻 Client Integration (Use the server!)
5191

0 commit comments

Comments
 (0)