# Send MongoDB Atlas to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mongodb-atlas-admin",
    "name": "MongoDB Atlas",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/finishy1995/mongodb-atlas-admin",
    "canonicalUrl": "https://clawhub.ai/finishy1995/mongodb-atlas-admin",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/mongodb-atlas-admin",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mongodb-atlas-admin",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "resources/atlas-admin-api-v2-openapi-source.json",
      "scripts/atlas-api.mjs",
      "scripts/atlas-call.mjs"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "mongodb-atlas-admin",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T20:40:15.744Z",
      "expiresAt": "2026-05-12T20:40:15.744Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mongodb-atlas-admin",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mongodb-atlas-admin",
        "contentDisposition": "attachment; filename=\"mongodb-atlas-admin-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "mongodb-atlas-admin"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/mongodb-atlas-admin"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mongodb-atlas-admin",
    "downloadUrl": "https://openagent3.xyz/downloads/mongodb-atlas-admin",
    "agentUrl": "https://openagent3.xyz/skills/mongodb-atlas-admin/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mongodb-atlas-admin/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mongodb-atlas-admin/agent.md"
  }
}
```
## Documentation

### MongoDB Atlas Admin API

Tool to browse OpenAPI specifications for MongoDB Atlas.
Note: If ATLAS_CLIENT_ID and ATLAS_CLIENT_SECRET are configured in the environment, this tool can also execute live API calls. Without credentials, it functions as a read-only documentation browser.

### 1. List API Catalog

List all available API categories or filter by keyword.

node {baseDir}/scripts/atlas-api.mjs catalog # list all categories
node {baseDir}/scripts/atlas-api.mjs catalog Clusters

### 2. Get API Details

Get full endpoint definition (method, path, params) for a specific Operation ID.

node {baseDir}/scripts/atlas-api.mjs detail listClusterDetails

### 3. Get Schema Definition

Get the data model schema for complex types.

node {baseDir}/scripts/atlas-api.mjs schema "#/components/schemas/ApiError"

### 4. Execute Live API Calls

Execute real HTTP requests against the Atlas API.

Script: node {baseDir}/scripts/atlas-call.mjs <METHOD> <ENDPOINT> [flags]

⚠️ Mandatory Safety Protocol

For any state-changing operation (POST, PUT, PATCH, DELETE):

STOP & REVIEW: You MUST NOT execute the command immediately.
PREVIEW: Use --dry-run first to verify the payload and endpoint.
CONFIRM: Display the full command and JSON body to the user.
EXECUTE: Only run with --yes after receiving explicit user approval.

Usage Examples

1. Read-Only (Safe)

node {baseDir}/scripts/atlas-call.mjs GET groups/{groupId}/clusters

2. Create/Modify (RISKY - Require Approval)

node {baseDir}/scripts/atlas-call.mjs POST groups/{groupId}/clusters \\
  --data '{"name":"DemoCluster", "providerSettings":{...}}' \\
  --dry-run

Options

-d, --data <json>: Request body string (ensure proper JSON escaping).
-p, --params <json>: Query parameters.
--dry-run: Print the request details without executing (Recommended for verification).
--yes: Skip interactive confirmation (Use CAREFULLY).

Environment

Requires ATLAS_CLIENT_ID and ATLAS_CLIENT_SECRET to be set.

### Core Categories

(Use catalog command to see the full list of 50+ categories)

Clusters / Cloud Backups
Projects / Organizations
Database Users / Custom Database Roles
Alerts / Alert Configurations
Monitoring and Logs / Events
Network Peering / Private Endpoint Services
Serverless Instances
Access Tracking / Auditing
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: finishy1995
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T20:40:15.744Z
- Expires at: 2026-05-12T20:40:15.744Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/mongodb-atlas-admin)
- [Send to Agent page](https://openagent3.xyz/skills/mongodb-atlas-admin/agent)
- [JSON manifest](https://openagent3.xyz/skills/mongodb-atlas-admin/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mongodb-atlas-admin/agent.md)
- [Download page](https://openagent3.xyz/downloads/mongodb-atlas-admin)