{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/mongodb-atlas-admin",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mongodb-atlas-admin",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "resources/atlas-admin-api-v2-openapi-source.json",
      "scripts/atlas-api.mjs",
      "scripts/atlas-call.mjs"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/mongodb-atlas-admin",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "MongoDB Atlas Admin API",
        "body": "Tool to browse OpenAPI specifications for MongoDB Atlas.\nNote: 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."
      },
      {
        "title": "1. List API Catalog",
        "body": "List all available API categories or filter by keyword.\n\nnode {baseDir}/scripts/atlas-api.mjs catalog # list all categories\nnode {baseDir}/scripts/atlas-api.mjs catalog Clusters"
      },
      {
        "title": "2. Get API Details",
        "body": "Get full endpoint definition (method, path, params) for a specific Operation ID.\n\nnode {baseDir}/scripts/atlas-api.mjs detail listClusterDetails"
      },
      {
        "title": "3. Get Schema Definition",
        "body": "Get the data model schema for complex types.\n\nnode {baseDir}/scripts/atlas-api.mjs schema \"#/components/schemas/ApiError\""
      },
      {
        "title": "4. Execute Live API Calls",
        "body": "Execute real HTTP requests against the Atlas API.\n\nScript: node {baseDir}/scripts/atlas-call.mjs <METHOD> <ENDPOINT> [flags]\n\n⚠️ Mandatory Safety Protocol\n\nFor any state-changing operation (POST, PUT, PATCH, DELETE):\n\nSTOP & REVIEW: You MUST NOT execute the command immediately.\nPREVIEW: Use --dry-run first to verify the payload and endpoint.\nCONFIRM: Display the full command and JSON body to the user.\nEXECUTE: Only run with --yes after receiving explicit user approval.\n\nUsage Examples\n\n1. Read-Only (Safe)\n\nnode {baseDir}/scripts/atlas-call.mjs GET groups/{groupId}/clusters\n\n2. Create/Modify (RISKY - Require Approval)\n\nnode {baseDir}/scripts/atlas-call.mjs POST groups/{groupId}/clusters \\\n  --data '{\"name\":\"DemoCluster\", \"providerSettings\":{...}}' \\\n  --dry-run\n\nOptions\n\n-d, --data <json>: Request body string (ensure proper JSON escaping).\n-p, --params <json>: Query parameters.\n--dry-run: Print the request details without executing (Recommended for verification).\n--yes: Skip interactive confirmation (Use CAREFULLY).\n\nEnvironment\n\nRequires ATLAS_CLIENT_ID and ATLAS_CLIENT_SECRET to be set."
      },
      {
        "title": "Core Categories",
        "body": "(Use catalog command to see the full list of 50+ categories)\n\nClusters / Cloud Backups\nProjects / Organizations\nDatabase Users / Custom Database Roles\nAlerts / Alert Configurations\nMonitoring and Logs / Events\nNetwork Peering / Private Endpoint Services\nServerless Instances\nAccess Tracking / Auditing"
      }
    ],
    "body": "MongoDB Atlas Admin API\n\nTool 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.\n\nCommands\n1. List API Catalog\n\nList all available API categories or filter by keyword.\n\nnode {baseDir}/scripts/atlas-api.mjs catalog # list all categories\nnode {baseDir}/scripts/atlas-api.mjs catalog Clusters\n\n2. Get API Details\n\nGet full endpoint definition (method, path, params) for a specific Operation ID.\n\nnode {baseDir}/scripts/atlas-api.mjs detail listClusterDetails\n\n3. Get Schema Definition\n\nGet the data model schema for complex types.\n\nnode {baseDir}/scripts/atlas-api.mjs schema \"#/components/schemas/ApiError\"\n\n4. Execute Live API Calls\n\nExecute real HTTP requests against the Atlas API.\n\nScript: node {baseDir}/scripts/atlas-call.mjs <METHOD> <ENDPOINT> [flags]\n\n⚠️ Mandatory Safety Protocol\n\nFor any state-changing operation (POST, PUT, PATCH, DELETE):\n\nSTOP & REVIEW: You MUST NOT execute the command immediately.\nPREVIEW: Use --dry-run first to verify the payload and endpoint.\nCONFIRM: Display the full command and JSON body to the user.\nEXECUTE: Only run with --yes after receiving explicit user approval.\nUsage Examples\n\n1. Read-Only (Safe)\n\nnode {baseDir}/scripts/atlas-call.mjs GET groups/{groupId}/clusters\n\n\n2. Create/Modify (RISKY - Require Approval)\n\nnode {baseDir}/scripts/atlas-call.mjs POST groups/{groupId}/clusters \\\n  --data '{\"name\":\"DemoCluster\", \"providerSettings\":{...}}' \\\n  --dry-run\n\nOptions\n-d, --data <json>: Request body string (ensure proper JSON escaping).\n-p, --params <json>: Query parameters.\n--dry-run: Print the request details without executing (Recommended for verification).\n--yes: Skip interactive confirmation (Use CAREFULLY).\nEnvironment\n\nRequires ATLAS_CLIENT_ID and ATLAS_CLIENT_SECRET to be set.\n\nCore Categories\n\n(Use catalog command to see the full list of 50+ categories)\n\nClusters / Cloud Backups\nProjects / Organizations\nDatabase Users / Custom Database Roles\nAlerts / Alert Configurations\nMonitoring and Logs / Events\nNetwork Peering / Private Endpoint Services\nServerless Instances\nAccess Tracking / Auditing"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/finishy1995/mongodb-atlas-admin",
    "publisherUrl": "https://clawhub.ai/finishy1995/mongodb-atlas-admin",
    "owner": "finishy1995",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}