get_atlas_connection_strings
Retrieve connection strings for MongoDB Atlas clusters by specifying the project ID and cluster name to enable direct database access.
Instructions
Retrieves connection strings for a cluster in an existing Atlas project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clusterName | Yes | The name of the cluster. | |
projectId | Yes | The ID of the Atlas project. |
Input Schema (JSON Schema)
{
"properties": {
"clusterName": {
"description": "The name of the cluster.",
"type": "string"
},
"projectId": {
"description": "The ID of the Atlas project.",
"type": "string"
}
},
"required": [
"projectId",
"clusterName"
],
"type": "object"
}