在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用mongodb
星标138
分支37
更新时间2026年3月8日 03:01
Manage MongoDB databases via the mongosh tool.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Manage MongoDB databases via the mongosh tool.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Interact with Elasticsearch clusters via the API.
Manage GitLab issues and merge requests via the glab CLI.
Read, send, and manage Gmail emails via the gmail-cli tool.
Manage Redis databases via the redis-cli tool.
Manage AWS resources via the aws CLI.
Query metrics, manage monitors, post events, and interact with Datadog via the dogshell CLI.
| name | mongodb |
| description | Manage MongoDB databases via the mongosh tool. |
| metadata | {"displayName":"MongoDB","icon":"database","category":"databases","version":"1.0.0","dependencies":{"cli":"mongosh","checkCommand":"mongosh --version","install":{"darwin":{"brew":"mongosh"},"linux":{"apt":"mongodb-mongosh","script":"wget -qO - https://www.mongodb.org/static/pgp/server-7.0.asc | sudo apt-key add - && sudo apt install mongodb-mongosh"},"windows":{"winget":"MongoDB.Shell","choco":"mongodb-shell","scoop":"mongosh"}}},"config":[{"name":"MONGODB_URI","label":"Connection URI","type":"string","required":false,"placeholder":"mongodb://localhost:27017"}],"auth":{"type":"none"}} |
Use mongosh to interact with MongoDB databases.
mongosh "mongodb://user:password@host:port/dbname"show dbsuse <dbname>show collectionsdb.collection.find().limit(5)db.collection.insertOne({ key: "value" })exitmongosh to be installed in the environment.