Telegram nodes
Tools for sending messages and media via Telegram. These nodes are also served as MCP tools on the telegram MCP server. Back to the full node reference.
Telegram Send Media
telegram_send_media · natural-language configurable · 3 credits on Cloud
Send a media file to a Telegram chat.
Credential: Telegram (API key)
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
chatId | string | ✓ | Telegram chat identifier where the media will be sent. |
mediaUrls | array<string> | ✓ | List of media URLs to send to the Telegram chat. |
Output
Returns a list of records — reference fields downstream as $<node>.error.
| Field | Type | Description |
|---|---|---|
error | string | Error message when the media send failed. |
messageId | integer | Identifier of the sent Telegram message. |
status | boolean | Whether the media was sent successfully. |
Telegram Send Message
telegram_send_message · natural-language configurable · 3 credits on Cloud
Send a text message to a Telegram chat.
Credential: Telegram (API key)
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
chatId | string | ✓ | Telegram chat identifier where the message will be sent. |
text | string | ✓ | Text content of the Telegram message. |
Output
Returns a list of records — reference fields downstream as $<node>.messageId.
| Field | Type | Description |
|---|---|---|
messageId | integer | Identifier of the sent Telegram message. |
status | boolean | Whether the Telegram message was sent successfully. |