v2.2.3

October 28, 2025

Now you can boost your agent’s performance in async workflows MongoDB support

Make your agents faster and more efficient with asynchronous MongoDB access. Using the AsyncMongoDb class, your agents can now perform database operations without blocking, improving performance in async workflows and handling more requests concurrently.

from agno.agent import Agent
from agno.db.mongo import AsyncMongoDb

agent = Agent(
    db=AsyncMongoDb(
        db_name="agno_db",
        connection_string="mongodb://localhost:27017"
    )
)

response = await agent.arun("Process this request")

View the docs to learn more about async MongoDB