send_message
Send messages to Telegram entities with optional markup and reply functionality, enabling clear and structured communication via the Telegram MCP Server.
Instructions
Send a message to an entity with optional markup and reply
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | ||
entity_id | Yes | ||
reply_to_message_id | No |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"default": "",
"title": "Content",
"type": "string"
},
"entity_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Entity Id"
},
"reply_to_message_id": {
"default": null,
"title": "Reply To Message Id",
"type": "integer"
}
},
"required": [
"entity_id"
],
"title": "send_messageArguments",
"type": "object"
}