---
title: "Agents can sign up for MotherDuck"
url: https://daily.dev/posts/agents-can-sign-up-for-motherduck-clkroawy2
source_url: https://motherduck.com/blog/agent-signup
type: article
source: "MotherDuck"
published: 2026-08-10T21:48:46.644Z
updated: 2026-08-10T21:49:16.926Z
tags: ["ai-agents", "backend", "data-warehouse", "duckdb"]
reading_time: 6
upvotes: 0
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Agents can sign up for MotherDuck

**[MotherDuck](https://daily.dev/sources/motherduck)** · 6 min read · 0 upvotes · 0 comments

## Summary

MotherDuck now allows AI agents to autonomously provision a data warehouse account via a single API call — no forms, credentials, or human intervention required. An agent sends a POST request to https://new.motherduck.com and receives a token, a claim URL, and a quick-start guide. The post walks through a full example using Claude Code: querying GitHub Archive star events, running sub-second analytics with DuckDB, and packaging recurring ingestion logic as a hosted Python runtime job (Flights). Humans can later claim the provisioned organization via a one-time URL. The dlt team has already integrated the signup API to connect pipelines to MotherDuck warehouses without exposing credentials to the agent.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://motherduck.com/blog/agent-signup>

## Questions this post answers

### How can an AI agent programmatically provision a MotherDuck data warehouse without human intervention?

An agent sends an empty POST request to https://new.motherduck.com — no headers, body, or auth required. The response returns a motherduck_token for read/write access, a one-time claim_org_url for a human to later take ownership, a plain-text quick-start guide, and the cloud region (aws-us-east-1 only). The agent can then connect immediately using the DuckDB CLI or Python client with the injected token.

_Teams building agent-driven data pipelines track MotherDuck and DuckDB developments on daily.dev._

### What are MotherDuck Flights and how do they work for scheduled data ingestion?

Flights are Python programs that run on MotherDuck's hosted runtime, either on demand or on a cron schedule. They support virtually any pip-installable Python code and use the DuckDB Python client to connect via `duckdb.connect('md:')`. MotherDuck injects credentials at runtime, so the agent writes only the pipeline logic and never handles secrets directly. Scheduled Flights are available on the Business plan.

_Developers automating analytics pipelines with hosted runtimes follow MotherDuck updates on daily.dev._

## Similar posts on daily.dev

- [How an AI agent signed itself up to MotherDuck and built a pipeline](https://daily.dev/posts/how-an-ai-agent-signed-itself-up-to-motherduck-and-built-a-pipeline-xwm1pjanc) · MotherDuck · 0 upvotes · 0 comments
- [Don't Fear the Agents - AI on the Data Lakehouse](https://daily.dev/posts/don-t-fear-the-agents---ai-on-the-data-lakehouse-5i7aa2g81) · MotherDuck · 1 upvotes · 0 comments
- [Vibe Code Data Apps with Vercel V0 & MotherDuck](https://daily.dev/posts/vibe-code-data-apps-with-vercel-v0-motherduck-83fdddbmt) · MotherDuck · 0 upvotes · 0 comments

---

Tags: [#ai-agents](https://daily.dev/tags/ai-agents), [#backend](https://daily.dev/tags/backend), [#data-warehouse](https://daily.dev/tags/data-warehouse), [#duckdb](https://daily.dev/tags/duckdb)

[View this post on daily.dev](https://daily.dev/posts/agents-can-sign-up-for-motherduck-clkroawy2)
