get_messages
Retrieve a specified count of messages from a Telegram entity by providing its ID, using the MCP server to facilitate communication with the Telegram platform.
Instructions
Get messages limited by a count from an entity
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 0,
"title": "Count",
"type": "integer"
},
"id": {
"title": "Id",
"type": "integer"
}
},
"required": [
"id"
],
"title": "get_messagesArguments",
"type": "object"
}