Telegram CLI for AI Agents

CLIs are eating MCPs. The industry is converging on the very same idea. MCPs for all their merit can be token hungry, slow, and unreliable for complex tool chaining. However, coding agents have become incredibly good at working with CLIs, and in fact they are far more comfortable working with CLI tools than MCP. With Composio's Universal CLI, your coding agents can talk to over 1000+ SaaS applications. With Telegram, agents can send a welcome message to new group members, forward latest announcement to all admins, get total member count of your group, and more — all without worrying about authentication. This guide walks you through Composio Universal CLI and explains how you can connect it with coding agents like Claude Code, Codex, OpenCode, etc, for end-to-end Telegram automation.

Telegram logoTelegram
Api Key

Telegram is a fast, secure cloud messaging app for individuals and groups. It offers robust privacy and real-time chat features.

18 Tools

Introduction

CLIs are eating MCPs. The industry is converging on the very same idea. MCPs for all their merit can be token hungry, slow, and unreliable for complex tool chaining. However, coding agents have become incredibly good at working with CLIs, and in fact they are far more comfortable working with CLI tools than MCP.

With Composio's Universal CLI, your coding agents can talk to over 1000+ SaaS applications. With Telegram, agents can send a welcome message to new group members, forward latest announcement to all admins, get total member count of your group, and more — all without worrying about authentication.

This guide walks you through Composio Universal CLI and explains how you can connect it with coding agents like Claude Code, Codex, OpenCode, etc, for end-to-end Telegram automation.

Also integrate Telegram with

What is Universal CLI and why use it?

The idea behind building the universal CLI is to give agents a single command interface to interact with all your external applications. Here's what you'll get with it:

  • Agent-friendly: Coding agents like Claude Code, Codex, and OpenCode can use CLI tools natively — no MCP setup required.
  • Authentication handled: Connect once via OAuth or API Key, and all CLI commands work with your credentials automatically.
  • Tool discovery: Search, inspect, and execute 20,000+ tools across 1000+ apps from one interface.
  • Trigger support: Use triggers to listen for events across your apps, powered by real-time webhooks or polling under the hood.
  • Type generation: Generate typed schemas for autocomplete and type safety in your projects.

Prerequisites

Install the Composio CLI, authenticate, and initialize your project:

bash
# Install the Composio CLI
curl -fsSL https://composio.dev/install | bash

# Authenticate with Composio
composio login

During login you'll be redirected to sign in page, finish the complete flow and you're all set.

Composio CLI authentication flow

Connecting Telegram to Coding Agents via Universal CLI

Once it is installed, it's essentially done. Claude Code, Codex, OpenCode, OpenClaw, or any other agent will be able to access the CLI. A few steps to give agents access to your apps.

  1. Launch your Coding Agent — Claude Code, Codex, OpenCode, anything you prefer.
  2. Prompt it to "Authenticate with Telegram"
  3. Complete the authentication and authorization flow and your Telegram integration is all set.
  4. Start asking anything you want.

Universal CLI Commands for Telegram

You can also manually execute CLI commands to interact with your Telegram.

Connect your Telegram account

Link your Telegram account and verify the connection:

bash
# Connect your Telegram account (opens OAuth flow)
composio connected-accounts link telegram

# Verify the connection
composio connected-accounts list --toolkits telegram

Discover Telegram tools

Search and inspect available Telegram tools:

bash
# List all available Telegram tools
composio tools list --toolkit telegram

# Search for Telegram tools by action
composio tools search "telegram"

# Inspect a tool's input schema
composio tools info TELEGRAM_ANSWER_CALLBACK_QUERY

Common Telegram Actions

Answer Callback QueryUse this method to send answers to callback queries sent from inline keyboards

bash
composio tools execute TELEGRAM_ANSWER_CALLBACK_QUERY \
  --callback_query_id "123456789012345678"

Delete MessageDelete a message, including service messages, with certain limitations

bash
composio tools execute TELEGRAM_DELETE_MESSAGE \
  --chat_id "123456789" \
  --message_id "123"

Edit MessageEdit text messages sent by the bot

bash
composio tools execute TELEGRAM_EDIT_MESSAGE \
  --text "Updated message text"

Export Chat Invite LinkGenerate a new primary invite link for a chat; any previously generated primary link is revoked

bash
composio tools execute TELEGRAM_EXPORT_CHAT_INVITE_LINK \
  --chat_id "123456789"

Generate Type Definitions

Generate typed schemas for Telegram tools to get autocomplete and type safety in your project:

bash
# Auto-detect language
composio generate --toolkits telegram

# TypeScript
composio ts generate --toolkits telegram

# Python
composio py generate --toolkits telegram

Tips & Tricks

  • Always inspect a tool's input schema before executing: composio tools info <TOOL_NAME>
  • Pipe output with jq for better readability: composio tools execute TOOL_NAME -d '{}' | jq
  • Set COMPOSIO_API_KEY as an environment variable for CI/CD pipelines
  • Use composio dev logs tools to inspect execution logs and debug issues

Next Steps

  • Try asking your coding agent to perform various Telegram operations
  • Explore cross-app workflows by connecting more toolkits
  • Set up triggers for real-time automation
  • Use composio generate for typed schemas in your projects
TOOLS

Supported Tools

Every Telegram action and event your agent gets out of the box.

Answer Callback Query

Use this method to send answers to callback queries sent from inline keyboards.

Export Chat Invite Link

Generate a new primary invite link for a chat; any previously generated primary link is revoked.

Delete Message

Delete a message, including service messages.

Edit Message

Edit text messages sent by the bot.

Forward Message

Forward messages of any kind.

Get Chat Info

Get up to date information about the chat (current name of the user for one-on-one conversations, current username of a user, group or channel, etc.

Get Chat Administrators

Get a list of administrators in a chat.

Get Chat History

Get chat history messages via the getUpdates polling method, filtered by chat_id.

Get Chat Member

Get a chat member's status/role (including the bot itself) to preflight permissions and troubleshoot 403/empty-history issues.

Get Chat Members Count

Get the number of members in a chat.

Get Bot Info

Get basic information about the bot using the Bot API getMe method.

Get Updates

Use this method to receive incoming updates using long polling.

Send Document

Send general files (documents) to a Telegram chat using the Bot API.

Send Location

Send point on the map location to a Telegram chat using the Bot API.

Send Message

Send a text message to a Telegram chat using the Bot API.

Send Photo

Send photos to a Telegram chat using the Bot API.

Send Poll

Send a native poll to a Telegram chat using the Bot API.

Set Bot Commands

Use this method to change the list of the bot's commands.

FAQ

Frequently asked questions

The Composio Universal CLI is a single command-line interface that lets coding agents and developers interact with 1000+ SaaS applications. It handles authentication, tool discovery, action execution, and trigger setup — all from the terminal, without needing to configure MCP servers.

Any coding agent that can run shell commands works with the Composio CLI — including Claude Code, Codex, OpenCode, OpenClaw, and others. Once the CLI is installed, agents automatically discover and use the composio commands to interact with Telegram and other connected apps.

MCP servers require configuration and can be token-heavy for complex workflows. The CLI gives agents a direct, lightweight interface — no server setup needed. Agents simply call composio commands like any other shell tool. It's faster to set up, more reliable for multi-step tool chaining, and works natively with how coding agents already operate.

All sensitive data such as tokens, keys, and configuration is fully encrypted at rest and in transit. Composio is SOC 2 Type 2 compliant and follows strict security practices so your Telegram data and credentials are handled as safely as possible. You can also bring your own OAuth credentials for full control.

Start with Telegram.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Telegram tool your agent needs.Free to start.

Start building