An index in MongoDB is a special data structure that holds the data of a few fields of documents in a collection. It improves the performance of search operations (queries) within the database by providing a more efficient path to the data. Without an index, MongoDB would need to scan every document in a collection to find a match, but with an index, it can greatly reduce the number of documents it needs to inspect. Indices in MongoDB are similar to indices in other database systems.