From a7baa31ab622fd9c3c88457570092a6249d73a2e Mon Sep 17 00:00:00 2001 From: Kamil <70073044+l1v0n1@users.noreply.github.com> Date: Thu, 25 Dec 2025 22:23:26 +0300 Subject: [PATCH] docs: add message reaction tools to README Add documentation for three new message reaction tools from PR #41: - send_reaction(chat_id, message_id, emoji, big=False): Add a reaction to a message - remove_reaction(chat_id, message_id): Remove a reaction from a message - get_message_reactions(chat_id, message_id, limit=50): Get all reactions on a message These tools are now part of the Messaging section in the features list. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 76d532d..264a862 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,9 @@ This MCP server exposes a huge suite of Telegram tools. **Every major Telegram/T - **create_poll(chat_id, question, options, multiple_choice, quiz_mode, public_votes, close_date)**: Create a poll - **list_inline_buttons(chat_id, message_id, limit)**: Inspect inline keyboards to discover button text/index - **press_inline_button(chat_id, message_id, button_text, button_index)**: Trigger inline keyboard callbacks by label or index +- **send_reaction(chat_id, message_id, emoji, big=False)**: Add a reaction to a message +- **remove_reaction(chat_id, message_id)**: Remove a reaction from a message +- **get_message_reactions(chat_id, message_id, limit=50)**: Get all reactions on a message ### Contact Management - **list_contacts()**: List all contacts