{"id":13531543,"url":"https://github.com/mongodb/mongodb-atlas-cli","last_synced_at":"2026-03-05T12:04:26.671Z","repository":{"id":37078859,"uuid":"236735050","full_name":"mongodb/mongodb-atlas-cli","owner":"mongodb","description":"MongoDB Atlas CLI enables you to manage your MongoDB in the Cloud","archived":false,"fork":false,"pushed_at":"2026-02-05T22:31:05.000Z","size":55614,"stargazers_count":179,"open_issues_count":8,"forks_count":87,"subscribers_count":27,"default_branch":"master","last_synced_at":"2026-02-06T01:30:22.897Z","etag":null,"topics":["golang","hacktoberfest","infrastructure","mongodb","mongodb-atlas"],"latest_commit_sha":null,"homepage":"https://www.mongodb.com/docs/atlas/cli/stable/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mongodb.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-01-28T12:54:33.000Z","updated_at":"2026-02-05T16:19:29.000Z","dependencies_parsed_at":"2023-09-27T18:24:13.062Z","dependency_job_id":"dd102f50-1ef8-4d8e-97d8-0764a556f307","html_url":"https://github.com/mongodb/mongodb-atlas-cli","commit_stats":{"total_commits":3198,"total_committers":65,"mean_commits":49.2,"dds":0.7048155096935584,"last_synced_commit":"f11d1be5719027e453b07a2d979e01e4ea68193c"},"previous_names":["mongodb/mongocli","mongodb/mcli"],"tags_count":161,"template":false,"template_full_name":null,"purl":"pkg:github/mongodb/mongodb-atlas-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mongodb%2Fmongodb-atlas-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mongodb%2Fmongodb-atlas-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mongodb%2Fmongodb-atlas-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mongodb%2Fmongodb-atlas-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mongodb","download_url":"https://codeload.github.com/mongodb/mongodb-atlas-cli/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mongodb%2Fmongodb-atlas-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29366901,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T08:51:36.827Z","status":"ssl_error","status_checked_at":"2026-02-12T08:51:26.849Z","response_time":55,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["golang","hacktoberfest","infrastructure","mongodb","mongodb-atlas"],"created_at":"2024-08-01T07:01:03.862Z","updated_at":"2026-02-12T13:25:35.878Z","avatar_url":"https://github.com/mongodb.png","language":"Go","funding_links":[],"categories":["Go","Tools"],"sub_categories":["Shell"],"readme":"[![Coverage Status](https://coveralls.io/repos/github/mongodb/mongodb-atlas-cli/badge.svg?branch=master)](https://coveralls.io/github/mongodb/mongodb-atlas-cli?branch=master)\n\n## MongoDB Atlas CLI\n\nThe MongoDB Atlas CLI is a modern command line interface that enables you to manage MongoDB Atlas from the terminal.\n\n![atlascli-atlas-quickstart](https://user-images.githubusercontent.com/5663078/156184669-57c8ddce-6f0a-4e84-9311-2d996cb27942.gif)\n\n## Installing\n### Homebrew\n```bash\nbrew install mongodb-atlas-cli\n```\nSee [Install or Update the Atlas CLI](https://www.mongodb.com/docs/atlas/cli/current/install-atlas-cli/) to see all the installation methods available.\n\n### Pre-built Binaries\n\nDownload the appropriate version for your platform from [Atlas CLI releases](https://github.com/mongodb/mongodb-atlas-cli/releases).\nAfter you download the library, you can run it from anywhere and don't need to install it into a global location.\nThis works well for shared hosts and other systems where you don't have a privileged account.\n\nYou can place this binary somewhere in your `PATH` for ease of use.\n`/usr/local/bin` is the most probable location.\n\n### Build From Source\n\n#### Fetch Source\n\n```bash\ngit clone https://github.com/mongodb/mongodb-atlas-cli.git\ncd mongodb-atlas-cli\n```\n\n#### Build\n\nTo build `atlascli`, run:\n\n```bash\nmake build\n```\n\nThe resulting `atlas` binary is placed in `./bin`.\n\n#### Install\n\nTo install the `atlas` binary in `$GOPATH/bin`, run:\n\n```bash\nmake install\n```\n\n**Note:** running `make build` is not needed when running `make install`.\n\n\n## Usage\n\nTo get a list of available commands, run `atlas help`\nor check our documentation for more details.\n\n### Configuring Atlas CLI\nTo use `atlascli`, open your terminal, run `atlas auth login`, and follow the prompted steps.\n\n### Shell Completions\n\nIf you install via [homebrew](#hombrew-on-macos) no additional actions are needed.\n\nTo get specific instructions for your preferred shell, run:\n\n```bash\natlas completion \u003cbash|zsh|fish|powershell\u003e --help\n```\n\n## Contributing\n\nSee our [CONTRIBUTING.md](CONTRIBUTING.md) guide.\n\n## License\n\nMongoDB Atlas CLI is released under the Apache 2.0 license. See [LICENSE](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmongodb%2Fmongodb-atlas-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmongodb%2Fmongodb-atlas-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmongodb%2Fmongodb-atlas-cli/lists"}