How to Install MongoDB Compass on MacOS?
Last Updated :
23 Jul, 2025
MongoDB Compass is basically a tool to quickly explore your MongoDB data, run queries or even interact with data with full functionalities. It can be referred to as a GUI for MongoDB. It is free to use and can be run on different operating systems such as macOS, Windows, and Linux. The following method also works for the newer M1 macs.
Downloading and Installing MongoDB
To install MongoDB compass, we need to have MongoDB installed on our system.
Steps for installation of MongoDB and MongoDB Compass
Step 1: Before proceeding with the installation of MongoDB, we need to have Homebrew installed on our system. To install Homebrew head over to the gfg article provided below.
https://www.geeksforgeeks.org/installation-guide/homebrew-installation-on-macos/
Step 2: After installation of Homebrew, restart your terminal.
Step 3: On a fresh terminal, run the following command and press return.
brew tap mongodb/brew
Step 4: Now, run the following command on your terminal to install the MongoDB community version.
brew install mongodb-community
Step 5: To load the services, run the following command.
brew services start mongodb-community
Step 6: Now we need to connect to the mongo shell. In order to connect to the mongo shell, run the following command on your terminal.
mongo
After successfully connecting to the mongo shell, head over to MongoDB compass's official website to download MongoDB compass.
Step 7: Click on the download button as shown below.
Step 8: Once the download is over, open the .dmg file. The installation manager opens up, drag MongoDB Compass to the Applications folder as shown below.
You have successfully installed MongoDB Compass on your macOS.
Similar Reads
How to Install MongoDB Compass on Linux? MongoDB is a free, open-source, cross-platform, document-oriented database. It is also classified as a non-SQL database program. Compass is an interactive tool for querying, optimizing & analyzing MongoDB data. It works in a visual environment. It can be installed in any operating system like Wi
1 min read
How to Install MongoDB Enterprise on MacOS? In complement to SQL, MongoDB is a document database that is part of the NoSQL family of databases. Records in MongoDB are documents, which in JavaScript behave quite similarly to JSON objects. By using the field's key, values in documents can be sought. Because some fields/keys might be present in
2 min read
How to Install MongoDB Bi Connector on MacOS? MongoDB BI connector is a connector for business intelligence that allows you to fabricate different queries using SQL which can be used to envision your data in a more sophisticated way. MongoDB Bi is more advanced than traditional business tools which work only with tabular or flat data. The Mongo
2 min read
How to Install MongoDB on CentOS? MongoDB is a flexible, powerful, and super-fast database management system. Unlike those old-school databases with strict rules, MongoDB lets you store your data in flexible documents, similar to how you organize things in JSON. This means you can easily add new information or change things up witho
4 min read
How to Install MongoDB on cPanel? cPanel is a web hosting management system. cPanel provides a control panel that provides a nice user interface. It is the most reliable site management system. Moreover, cPanel provides a dashboard where some web date files and MySQL files are present to help others out. MongoDB is a database and it
2 min read
How to Install NodeJS on MacOS Node.js is a popular JavaScript runtime used for building server-side applications. Itâs cross-platform and works seamlessly on macOS, Windows, and Linux systems. In this article, we'll guide you through the process of installing Node.js on your macOS system.What is Node.jsNode.js is an open-source,
6 min read