connect
Establish a connection to a MongoDB instance using a specific connection string, enabling interaction with MongoDB Atlas resources for database operations and management tasks.
Instructions
Connect to a MongoDB instance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionString | Yes | MongoDB connection string (in the mongodb:// or mongodb+srv:// format) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "Options for connecting to MongoDB.",
"properties": {
"connectionString": {
"description": "MongoDB connection string (in the mongodb:// or mongodb+srv:// format)",
"type": "string"
}
},
"required": [
"connectionString"
],
"type": "object"
}