LaunchKit · 2026
Back to Skills

mongodb-atlas-admin

Manage MongoDB Atlas clusters, projects, users.

0
0 downloads
by @mrlynn

Setup & Installation

openclaw skills install @mrlynn/mongodb-atlas-admin

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install mongodb-atlas-admin

What This Skill Does

Manages MongoDB Atlas infrastructure via the Atlas Administration API v2. Covers clusters, database users, IP access lists, backups, snapshots, and alerts. Authenticates with API keys or OAuth2 service account credentials.

Automates Atlas infrastructure changes that would otherwise require manual clicks through the web console, making them scriptable and repeatable in CI/CD pipelines.

When to use it

  • Spin up a new Atlas cluster for a staging environment
  • Add a database user before deploying an application
  • Whitelist a new office IP in the access list
  • Take an on-demand snapshot before a risky migration
  • Scale a cluster to a larger instance size during peak traffic

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: create a free M0 cluster named 'dev-sandbox' in us-east-1

AGENT
  1. 1Reads ATLAS_PUBLIC_KEY, ATLAS_PRIVATE_KEY, and ATLAS_GROUP_ID from environment
  2. 2Sends POST request to /groups/{groupId}/clusters with M0 tier config and TENANT provider
  3. 3Polls GET /groups/{groupId}/clusters/dev-sandbox until state is IDLE
  4. 4Returns connection details for the new cluster
OUTPUT

Cluster 'dev-sandbox' created and ready, with connection string provided

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

ATLAS_PUBLIC_KEY environment variableATLAS_PRIVATE_KEY environment variableMongoDB Atlas account with an organization and projectAtlas API key pair generated from the Atlas web console