telegram_send
Send free-form messages to Telegram with automatic handling of long content by truncating messages over 300 characters. Use for direct communication through the Telegram MCP Server.
Instructions
发送自由格式消息到 Telegram(不推荐,请优先使用 telegram_notify)
自动处理:
- 超过300字自动截断
- 会提示使用 telegram_notify 发送结构化消息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | 消息内容 |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "消息内容",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}