telegram-post

Create and schedule Telegram channel posts with markdown formatting and media through the Publora MCP server.

47|5|Updated Mar 24, 2026
One-click install
npx skills add https://github.com/publora/skills --skill telegram-post-publora
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: telegram-post
Source: https://github.com/publora/skills/tree/main/.codex-marketplace/publora-skills/skills/telegram-post
Command: npx skills add https://github.com/publora/skills --skill telegram-post-publora

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Publishing to Telegram channels or groups normally requires writing Bot API code, handling markdown quirks, and respecting strict media limits. This Skill lets an AI agent draft, schedule, and publish Telegram posts through the Publora MCP server without touching the Bot API directly. ## Core Features & Use Cases - Post and schedule messages: Create text posts with Telegram markdown (single-asterisk bold, italics, code, links) and schedule them for future delivery or save as drafts. - Media support: Attach up to 10 images or videos via public URLs or presigned uploads, with automatic enforcement of the 1,024-character caption and 50 MB video limits. - Delivery options: Control silent notifications, link previews, and forward protection through platform settings. - Use Case: A marketing team asks the agent to schedule a formatted product announcement with a screenshot to their Telegram channel for tomorrow at 8 AM Moscow time, and the post is created and scheduled in one call. ## Quick Start Ask your agent to post a formatted announcement with an image to your Telegram channel through Publora, optionally scheduling it for a specific time.

Frequently Asked Questions about telegram-post

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I schedule a post to a Telegram channel with an AI agent?▼

Connect your agent to the Publora MCP server with your API key, then call create_post with your Telegram connection ID, content, and a future ISO 8601 scheduledTime. Omitting the time creates a draft instead.

How do I format bold text in Telegram bot messages?▼

Telegram markdown uses single asterisks for bold, like *bold*, unlike standard Markdown which uses double asterisks. It also supports _italic_, `code`, code blocks, [links](url), and blockquotes.

What are the Telegram Bot API media limits?▼

Media captions are limited to 1,024 characters while text-only messages allow 4,096. Videos are capped at 50 MB for bots, images at 10 MB, and a single post cannot mix images and videos.

Why does my Telegram bot fail to post to a channel?▼

The bot must be added as an administrator to the channel with the can_post_messages permission, which is verified at connection time. Also verify the channel name or numeric chat ID is correct.

Can I send silent messages or disable link previews on Telegram?▼

Yes, set disableNotification, disableWebPagePreview, or protectContent in platformSettings.telegram via the REST API or MCP create_post. The schema is strict, so unknown keys are rejected with a validation error.