Files
genai-toolbox/docs/en/resources/sources/mongodb.md
Wenxin Du 74dbd6124d feat: Add MongoDB Source (#969)
Add MongoDB Source

---------

Co-authored-by: Author: Venkatesh Shanbhag <91714892+theshanbhag@users.noreply.github.com>
Co-authored-by: Kurtis Van Gent <31518063+kurtisvg@users.noreply.github.com>
2025-07-24 13:48:58 -04:00

1.2 KiB

title, type, weight, description
title type weight description
MongoDB docs 1 MongoDB is a no-sql data platform that can not only serve general purpose data requirements also perform VectorSearch where both operational data and embeddings used of search can reside in same document.

About

MongoDB is a popular NoSQL database that stores data in flexible, JSON-like documents, making it easy to develop and scale applications.

Example

sources:
    my-mongodb:
        kind: mongodb
        uri: "mongodb+srv://username:password@host.mongodb.net"
        database: sample_mflix
        

Reference

field type required description
kind string true Must be "mongodb".
uri string true connection string to connect to MongoDB
database string true Name of the mongodb database to connect to (e.g. "sample_mflix").