The document describes the basics of MongoDB, including that it uses databases containing collections which are made up of documents with fields. Collections can be indexed to improve performance of lookups and sorting. When data is retrieved from MongoDB, it is through a cursor which delays execution until needed. While similar concepts exist in relational databases, MongoDB's documents can have unique fields compared to tables with predefined columns.