Conduit
Conduit
Docsllms.txtHostingGitHubIntroduction

Getting Started

OverviewInstall ConduitMCP SetupYour First AppStart with AI

Learn

ArchitectureClient vs Admin APIConfiguration

Modules

OverviewAuthenticationAuthorizationDatabaseStorageCommunicationsChatRouterFunctions

Guides

Next.js IntegrationReBAC Team ScopingGitOps State Export

Deployment

Deployment OverviewDocker ComposeKubernetes and HelmLocal from SourceContainer Images

Reference

CLI ReferenceClient APIAdmin APIEnvironment VariablesMCP Tools

Resources

Migration v0.16 → v0.17Legacy DocumentationChangelogFAQGlossaryContributing

MCP Setup

Configure the Conduit Admin MCP server for development-time provisioning.

The Conduit MCP server exposes Admin API operations as tools so AI agents can provision schemas, users, and config during development. Never call MCP from application runtime code.

For AI agents

MCP is dev/deploy only. Apps use the Client API at port 3000 with user tokens. See Client vs Admin API.

Prerequisites

  1. Running Conduit instance with Admin API reachable (default port 3030)
  2. MCP transport enabled: transports.mcp: true in admin config
  3. Admin JWT or cdt_ API token

Cursor configuration

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "conduit": {
      "url": "http://localhost:3030/mcp?modules=authentication,database,storage,authorization",
      "headers": {
        "Authorization": "Bearer YOUR_ADMIN_JWT_OR_cdt_TOKEN"
      }
    }
  }
}

Protocol: Streamable HTTP (2025-06-18). Path is fixed at /mcp.

Module loading

On connect, only core and __meta__ load by default. Enable modules via the URL query:

NeedAdd to URL
Schemas, custom endpointsdatabase
Users, teamsauthentication
Filesstorage
ReBACauthorization
Chatchat
Email/SMS/pushcommunications (or email,push,sms)

After changing the URL, reconnect MCP and call list_modules to verify loaded: true.

Authentication

  • Admin JWT — from admin login flow
  • API token — create via Admin API (cdt_ prefix, shown once)

Every request: Authorization: Bearer <token>.

Tool naming

Admin routes map to tools: GET /database/schemas → get_database_schemas.

Next steps

  • MCP tools reference
  • Start with AI
  • Database module

Install Conduit

Install via CLI, Docker Compose microservices, or standalone image.

Your First App

Register a user and query the Client API with curl.

On this page

PrerequisitesCursor configurationModule loadingAuthenticationTool naming