Skip to main content

ANDI-AI: Secure Agentic AI Data Gateway for Enterprise MongoDB 🤖🍃

PyPI version License: MIT Python 3.8+

ANDI stands for Advanced Natural Language Database Interface. It is the Secure Agentic AI Data Gateway for Enterprise MongoDB. We provide a deterministic middleware layer that enables AI agents and software applications to safely execute queries/aggregates on MongoDB clusters using plain text—without sacrificing speed, security, or predictability. By leveraging Agentic workflow, Andi instantly translates plain English into precise MongoDB standard queries or complex multi-stage aggregation pipelines—complete with dynamic runtime variables.

Stop building, maintaining, and debugging dozens of rigid, single-purpose CRUD endpoints. Consolidate your data fetching layer into a single, highly flexible, intelligent NLP endpoint.


✨ Features

  • 🗣️ Text-to-NoSQL Translation: Write complex database requests in plain English. Andi handles the heavy lifting, translating intent into native MongoDB query syntax.
  • 🧠 Agentic Query Planning: Powered by OPENAPI, Andi deeply understands context, deeply nested structures, and relationships to construct highly accurate operations.
  • 💾 Persistent Query Caching (New): Add a robust persistence layer to fetch compiled queries directly from cache, avoiding redundant query generation and significantly reducing token usage.
  • 🔒 Privacy-First Schema Isolation: Andi connects to your database, infers the shape of your collections, and caches the structure locally. Only the schema metadata is sent to the LLM—your actual database records are never exposed to the agent.
  • Secure Runtime Variables: Safely inject dynamic inputs into your natural language prompts at runtime, eliminating string-concatenation and prompt-injection vulnerabilities.
  • 🛠️ Complex Aggregations Out-of-the-Box: Seamlessly generates standard find() queries as well as advanced aggregate() pipelines ($lookup, $unwind, $group, etc.).
  • 🎯 Single Endpoint Architecture: Perfect for building AI agents, chatbots, or highly dynamic applications that require flexible, ad-hoc data retrieval without writing code for every new UI view.
  • ⚙️ LLM_INTEGRATION.md: Cloud LLM skillset instructions to set up ANDI-AI as an isolated query orchestration layer and AI firewall in front of MongoDB database.

📦 Installation

Andi is available on PyPI. Install it cleanly using pip:

pip install andi-ai

⚙️ Prerequisites

To run Andi, ensure you have:

  1. A valid MongoDB Connection String URI.
  2. An OpenAI API Key configured in your environment variables (OPENAI_API_KEY).

🚀 Quick Start

Here is how easily you can initialize Andi, map your schema, and execute a natural language query with dynamic runtime bindings:

⚡ How Runtime Variables Work (**kwargs Resolution)

To prevent string-concatenation vulnerabilities and prompt injection, Andi uses a strict declarative variable binding system. When you define an intent, you declare placeholders using the ${variable_name} syntax.

When executing the query via run_query_executor, you must pass these exact variables as Python keyword arguments (**kwargs).

The Golden Rule of Mappings

The variable key identifier defined inside your runtime_inputs object template must match the Python parameter key exactly.

Location Key Syntax Example
1. Inside Intent JSON: "runtime_inputs": [{"email": "${target_email}"}] Uses ${target_email} placeholder
2. Inside run_query_executor: vector_agent.run_query_executor(plan, target_email=variable) target_email=target_email

Detailed Breakdown Example

Here is exactly how the mapping connects from your JSON definition to execution:

from andi import Andi


class TestProject:
    def testing_nlp(self, db_session, analyzed_schemas):
        self.db = db_session
        self.analyzed_schemas = analyzed_schemas


        connection_string = "mongodb://localhost:27017"

        vector_agent = Andi(db_session=db_session, analyzed_schemas=analyzed_schemas)
        database_name = "test"

        vector_agent.initialize_connection(connection_string=connection_string, database_name=database_name)
        vector_agent.analyze_schemas(base_collections=["users", "wallets", "weekly_leaderboard"])

        #Example 1

        target_email = "test_user_8_fischertimothy@gmail.com"

        intent = {
          "intent": {
            "goal": "Find the preferred_language and name of the user where email=target_email",
            "runtime_inputs":[
                {
                    "email":"${target_email}",
                    "datatype": "string"
                }
            ],
            "projection":["name", "preferred_language"]
          }
        }
        query = vector_agent.build_nlp_query(intent=intent, query_identifier=None, retry=False)
        print(query)

        output = vector_agent.run_query_executor(nlp_query=query, target_email=target_email)
        print(output)

🏗️ How It Works

graph TD
    classDef payload fill:#e2e8f0,stroke:#475569,stroke-width:2px,color:#0f172a,font-weight:bold;
    classDef stage fill:#f8fafc,stroke:#2563eb,stroke-width:2px,color:#1e3a8a;
    classDef output fill:#f0fdf4,stroke:#16a34a,stroke-width:2px,color:#14532d,font-weight:bold;

    Input["📥 User Intent Payload<br>(Natural Language + Base Collections)"]:::payload

    subgraph andi_Engine ["andi Open-Source Compilation Engine"]
        S1["<b>1. Prompt-to-Task Decomposition</b><br>• Deconstructs intent into filtering, grouping, & projection targets"]:::stage
        S2["<b>2. Schema Resolver & Type Isolation</b><br>• Validates keys against schema & isolates BSON data types"]:::stage
        S3["<b>3. Relationship-to-Schema Mapping</b><br>• Resolves multi-collection references & constructs $lookup joins"]:::stage
        S4["<b>4. Deterministic Pipeline Construction</b><br>• Enforces optimal stage ordering ($match ➔ $lookup ➔ $group)"]:::stage
        S5["<b>5. BSON Query Generator & Validator</b><br>• Binds dynamic kwargs & compiles executable BSON syntax"]:::stage
    end

    Output[("🚀 Executable MongoDB BSON Query<br>(PyMongo / Motor Driver)")]:::output

    Input --> S1
    S1 --> S2
    S2 --> S3
    S3 --> S4
    S4 --> S5
    S5 --> Output

📖 Supported Operations

Andi features a strict read-only routing engine. It translates natural language exclusively into data-fetching operations, ensuring your production data remains completely safe from AI hallucinations or unauthorized modifications.

Operation Status Capabilities Natural Language Example Generated Native Syntax
find() ✅ Supported Standard filtering, sorting, limits, and explicit field projections. "Find active users registered after 2025, sorted by latest." { "status": "active", "reg_date": { "$gt": "2025-01-01" } }
aggregate() ✅ Supported Multi-stage transformations, relational joins, unwinding arrays, and grouping. "Join weekly leaderboards with user wallets and get top 10 scores." [{ "$lookup": {...} }, { "$unwind": ... }, { "$sort": ... }]
insert() ❌ Blocked Prevent dynamic data insertion via the NLP endpoint. "Add a new user to the database..." Operation Denied (Read-Only Guardrail)
update() / delete() ❌ Blocked Prevent unauthorized mutations, bulk updates, or accidental collections drops. "Delete all users who haven't logged in..." Operation Denied (Read-Only Guardrail)

🔒 The Read-Only Safety Guarantee

Security Note: Write operations are intentionally restricted at the core library layer. Even if an LLM structure attempts to formulate a mutation pipeline, Andi's execution engine will intercept and reject the command before it ever hits your MongoDB driver. This makes it completely safe for exposed API endpoints.

🤝 Contributing

Contributions, issues, and feature requests are welcome! If you'd like to extend support for custom database engines, optimize pipeline construction routing, or suggest features, feel free to open a pull request or check the Issues Page.

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

andi_ai-0.1.14-cp38-abi3-win_amd64.whl (303.9 kB view details)

Uploaded CPython 3.8+Windows x86-64

andi_ai-0.1.14-cp38-abi3-macosx_10_13_universal2.whl (383.6 kB view details)

Uploaded CPython 3.8+macOS 10.13+ universal2 (ARM64, x86-64)

File details

Details for the file andi_ai-0.1.14-cp38-abi3-win_amd64.whl.

File metadata

  • Download URL: andi_ai-0.1.14-cp38-abi3-win_amd64.whl
  • Upload date:
  • Size: 303.9 kB
  • Tags: CPython 3.8+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for andi_ai-0.1.14-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 f814c0b1a6acd40567e9091e49203c5e984c90209d8fddfa95893817d680e738
MD5 a217c01e2d2ea185bd9591afb58582ed
BLAKE2b-256 0a29a3ee14de49b24a94b99b92369f129de61543dbe9e6645014fd39f2cf8bd7

See more details on using hashes here.

File details

Details for the file andi_ai-0.1.14-cp38-abi3-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for andi_ai-0.1.14-cp38-abi3-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 68507001215bf6c5695abb91cf42c108f520c82fb70ca7b3176ac9b08249b718
MD5 96ce3449e9396fabb553fe4591c373ec
BLAKE2b-256 d0e6df4df9a703c758cfc754ea430bde2e6679f8354c911b57049a865ab346e2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page