TeenyApp lets Claude build and deploy full-stack websites from a single chat link

TeenyApp (teenyapp.com) is a new tool that lets Claude on the web (or any AI chat) build and deploy a full website from a single pasted link. The creator built it because every time they asked Claude to actually ship something, the agentic workflow broke on Cloudflare config, Vercel CLI, GitHub repos, env vars, secrets, DNS — all requiring leaving the chat and signing up for services.
How it works
- Claim a live domain upfront:
yourapp.app.teenyapp.com - You get a link back with an agent token baked in.
- Paste that link into Claude. Claude reads the
agents.mdinstruction file at the link, and uses the agent token as a bearer token to make HTTP POST requests. - Those requests scaffold the project, write frontend and backend code, run migrations, and deploy straight to that domain.
What Claude can do through TeenyApp
- Build and deploy frontend/backend of full-stack apps to a live URL
- Run schema migrations on a real database
- Wire up auth (email/password, JWT, OAuth via Google, GitHub, Discord, LinkedIn)
- Set up row-level security rules in code
- Iterate on the live site by saving and committing files through the link
An example website called "Clonable" — which supports Google SSO and has a backend request handler that proxies user messages to an AI API provider — was built and published entirely from this Claude chat. You can try Clonable at clonable.app.teenyapp.com.
TeenyApp is built on top of an open-source backend framework called teenybase, which provides API, Auth, DB, and more out of the box. Browse community-built sites at teenyapp.com/explore-all.
📖 Read the full source: r/ClaudeAI
👀 See Also

X-MCP 2.0: MCP Server for X/Twitter API Access from Claude
X-MCP 2.0 is an MCP server that connects Claude Desktop and Claude Code to the X/Twitter API v2 with OAuth 2.0 PKCE authentication, providing 10 tools for posting tweets, searching, getting timelines, liking, retweeting, replying, and viewing profiles.

Claude Code Session Data Loss: Backup Script for Windows & Mac
Users report silent session data loss in Claude Code. Here's a free, automated backup script for Windows and Mac using PowerShell and launchd.

Auto-optimize: A Claude Code Plugin for Autonomous Performance Optimization
A developer built auto-optimize, a Claude Code plugin that autonomously runs profile → plan → benchmark loops to optimize code performance. In one test, it achieved a 27% faster hash table across all benchmark scenarios in about 3 hours.

Claude Code Skill /council Runs Prompts Across 4 AI Models in Parallel
A Claude Code skill called /council sends any prompt to GPT, Claude, Gemini, and Grok simultaneously in about 7 seconds, then uses Gemini to synthesize the best response by identifying specific improvements from the other models.