July 15, 2026
No servers, just suspicious vibes
Telegram Serverless
Telegram says your bot can live rent-free now — commenters want receipts first
TLDR: Telegram now lets bot makers run their app logic directly on Telegram, cutting out the need to manage their own server. Commenters liked the convenience but immediately started grilling the launch over missing details like storage limits, run-time quotas, pricing, and even whether the page was written by AI.
Telegram just rolled out Telegram Serverless, basically promising bot makers a life with no rented server, no babysitting, no late-night "why is it down?" panic. The pitch is deliciously simple: write your bot in plain JavaScript, hit one command, and Telegram runs it on its own systems with a built-in database. In normal-person language, it means people making chat bots and mini apps may no longer need to pay for and maintain a separate computer somewhere just to reply to a message.
But the real show was in the comments, where the crowd instantly split into "ooh, neat" and "okay, but what’s the catch?" One of the biggest eyebrow-raisers wasn’t even the product — it was that a commenter noticed the page seemed to be written by Claude, sparking a tiny side-plot of "wait, the announcement itself was AI-written?" That’s the sort of internet detail people latch onto like a soap-opera reveal.
Then came the practical skeptics: How big is that built-in SQLite database? What are the limits on time and storage? And hello, where is the pricing? Those questions gave the whole launch a classic tech-thread energy: everyone loves the dream until somebody asks for the bill. Still, there was genuine envy too, with one person flat-out wishing Signal had anything like Telegram’s bot tools. So yes, Telegram served up convenience — but the commenters served up the real headline: cool idea, now show the quotas, the cap, and the cost.
Key Points
- •Telegram Serverless runs backend code for Telegram bots and Mini Apps directly on Telegram’s infrastructure using isolated V8 execution.
- •The platform provides built-in access to the Telegram Bot API, an SQLite-backed database, and outbound HTTP without separate setup.
- •Developers work locally with JavaScript modules and use the tgcloud CLI to deploy code and apply database migrations.
- •Projects are structured around `handlers/` for update entry points, `lib/` for shared code, and `schema.js` for database tables.
- •The article’s demo bot stores per-chat message counts and is deployed with `npx tgcloud push` and `npx tgcloud migrate`.