send-telegram

Send a message to Dhruv's Telegram. Use when user says "send to telegram", "telegram me", "notify me", or wants to receive any text/note/reminder on Telegram.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "send-telegram" with this command: npx skills add aiagentwithdhruv/skills/aiagentwithdhruv-skills-send-telegram

Send Telegram Message

Goal

Send any message to Dhruv's Telegram (chat ID: 637313836) via n8n workflow.

How to Use

Method 1: Via n8n MCP (preferred)

Use the mcp__claude_ai_n8n__execute_workflow tool:

workflowId: fkErsg4iulUvpcsa
inputs: { "type": "chat", "chatInput": "<your message here>" }

Method 2: Direct API (fallback if MCP fails)

python3 -c "
import urllib.request, json, ssl
ctx = ssl.create_default_context()
ctx.check_hostname = False
ctx.verify_mode = ssl.CERT_NONE
url = 'https://n8n.aiwithdhruv.cloud/webhook/claude-telegram'
data = json.dumps({'message': '<your message here>'}).encode('utf-8')
req = urllib.request.Request(url, data=data, method='POST')
req.add_header('Content-Type', 'application/json')
resp = urllib.request.urlopen(req, context=ctx)
print(resp.read().decode())
"

Setup Required (one-time)

  1. Go to n8n UI: https://n8n.aiwithdhruv.cloud
  2. Open workflow: Claude Telegram Sender (ID: fkErsg4iulUvpcsa)
  3. Click Settings (gear icon) → Toggle "Available in MCP" ON
  4. Save

Details

  • Workflow ID: fkErsg4iulUvpcsa
  • Chat ID: 637313836
  • Telegram credential: W6XV6RQORTB3eBDg
  • Supports HTML formatting in messages
  • Created: Feb 15, 2026

Example Uses

  • "Send my interview prep notes to Telegram"
  • "Telegram me a reminder about the Monday 10:30 call"
  • "Send this summary to my Telegram"

Schema

Inputs

NameTypeRequiredDescription
messagestringYesMessage to send (supports HTML formatting)

Outputs

NameTypeDescription
sentbooleanWhether message was delivered

Credentials

NameSource
n8n_workflown8n MCP (workflow ID: fkErsg4iulUvpcsa)

Cost

Free (Telegram Bot API)

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

image-to-video

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

excalidraw-visuals

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

gmaps-leads

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

whisper-voice

No summary provided by upstream source.

Repository SourceNeeds Review
send-telegram | V50.AI