Skip to main content

Welcome to Connect AI

Connect AI is a managed platform for reading, writing, and acting on hundreds of SaaS, database, and API sources through secure, standards-based access. One governed layer for your entire stack: MCP for AI agents, ODBC/JDBC for BI tools, REST/OData for custom apps. Your data stays accessible, protected, and ready—wherever you need it.

Many sources, one interface

Unify access to 300+ sources and tools (BI, iPaaS, no-code builders) without building one-off integrations.

Data Sources →

Enterprise controls

SSO, user credentials, and workspaces to isolate and govern access.

APIs

Full REST API with SQL-grade semantics, plus a virtual SQL Server endpoint for tooling that speaks TDS.

API Reference →

Get started in 5 minutes

Setting up your first connection should be the easiest part of getting started. With quick authentication and easy connection setup, you’ll be up and running in minutes—not hours.

No guesswork, no complexity—just your first successful prompt, fast.

Get started
{`async def get_mcp_tools(session: ClientSession):
    """Set up the list of MCP tools that will be used to interact with"""
    mcp_tools = await session.list_tools()
    return [
        types.Tool(
            function_declarations=[
                types.FunctionDeclaration(
                    name=tool.name,
                    description=tool.description,
                    parameters={
                        p: v for p, v in tool.inputSchema.items()
                    }
                )
            ]
        )
        for tool in mcp_tools.tools
        if tool.name in BOX_MCP_TOOLS
    ]`}

Learn more about the developer platform

This guide covers three high-impact areas you’ll implement first: (1) Connectivity & Modeling, (2) Security & Governance, and (3) Programmatic Access & Jobs.

Documentation