Server Telegram Notes
FreeNot checkedEnables sending notes directly to your Telegram account using a Telegram bot. Provides a 'send-note' tool for programmatic note delivery via the Telegram messag
About
Enables sending notes directly to your Telegram account using a Telegram bot. Provides a 'send-note' tool for programmatic note delivery via the Telegram messaging platform.
README
This project implements a custom MCP Server that allows you to send notes directly to your Telegram account using a Telegram bot. It is designed for quick, programmatic note delivery via the Telegram messaging platform.
What is an MCP Server?
MCP (Model Context Protocol) Server is a server that implements the Model Context Protocol, enabling tools, resources, and prompts to be exposed in a standardized way for AI agents and other clients. MCP Servers can provide custom tools (like sending notes) that can be invoked remotely, making them highly extensible for automation and integration scenarios.
What is a Telegram Bot?
A Telegram bot is a special kind of Telegram account operated by software, not by a human. Bots can interact with users, send and receive messages, and perform automated tasks. Telegram bots are created and managed using the @BotFather bot on Telegram.
How to Create a Telegram Bot
- Open Telegram and search for @BotFather (BotFather documentation).
- Start a chat and use the
/newbotcommand to create a new bot. - Follow the instructions to set a name and username for your bot.
- After creation, you will receive a Telegram Bot API Token. Save this token; you will need it for configuration.
- Start a chat with your new bot (search for its username in Telegram and send a message).
- To get your personal chat ID, you can use tools like userinfobot or send a message to your bot and use the Telegram API to retrieve the chat ID.
Project Folder Structure
├── package.json
├── README.md
├── tsconfig.json
├── .env # Your environment variables (not committed)
├── src/
│ ├── env.ts # Loads and validates environment variables
│ └── index.ts # Main MCP server logic and Telegram integration
How It Works
- The server is built using the Model Context Protocol SDK and exposes a tool called
send-note. - When the
send-notetool is invoked (remotely or locally), it sends a message to your Telegram account using your bot. - The server reads your bot token and chat ID from environment variables, then uses the Telegram Bot API to deliver the message.
- The project is written in TypeScript and can be run in development mode or built for production.
Setup Instructions
Create a
.envfile in the project root with the following variables:TELEGRAM_TOKEN: Your Telegram bot API token (from @BotFather)TELEGRAM_PERSONAL_CHAT_ID: Your personal chat ID (the identifier for your chat with the bot)
Install dependencies:
npm installRun the server in development mode:
npm run devBuild and run for production:
npm run build npm start
Environment Variables
Create a .env file and add these variables:
TELEGRAM_TOKEN: Telegram bot API Token (use Telegram and @BotFather to retrieve the API token)TELEGRAM_PERSONAL_CHAT_ID: Chat ID (the chat identifier between you and the Telegram bot; overlaps with your user ID)
Setup Instructions to use MCP Server in VSCode
Create a mcp.json file in .vscode folder.
NOTE:
dz-telegram-notes-devis meant to work just for development.
{
"servers": {
"dz-telegram-notes-dev": {
"type": "stdio",
"command": "npm",
"args": [
"run",
"dev"
],
"cwd": "${workspaceFolder}",
"dev": {
"watch": "src/**/*.ts",
"debug": {
"type": "node"
}
}
},
"dz-telegram-notes-prod": {
"type": "stdio",
"command": "npm",
"args": [
"run",
"start"
],
"cwd": "${workspaceFolder}"
},
},
}
Setup Instructions for Claude Desktop
Add "mcp-telegram-notes" in claude_desktop_config.json file
{
"mcpServers": {
// ...
"mcp-telegram-notes": {
"command": "node",
"args": [
"PATH_TO_YOUR/dist/index.js"
],
"env": {
"TELEGRAM_TOKEN": "YourTelegramToken",
"TELEGRAM_PERSONAL_CHAT_ID": "YourChatId"
}
}
// ...
},
}
Installing Server Telegram Notes
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/danielzotti/mcp-server-telegram-notesFAQ
Is Server Telegram Notes MCP free?
Yes, Server Telegram Notes MCP is free — one-click install via Unyly at no cost.
Does Server Telegram Notes need an API key?
No, Server Telegram Notes runs without API keys or environment variables.
Is Server Telegram Notes hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Server Telegram Notes in Claude Desktop, Claude Code or Cursor?
Open Server Telegram Notes on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Gmail
Read, send and search emails from Claude
by GoogleSlack
Send, search and summarize Slack messages
by SlackRunbear
No-code MCP client for team chat platforms, such as Slack, Microsoft Teams, and Discord.
Discord Server
A community discord server dedicated to MCP by [Frank Fiegel](https://github.com/punkpeye)
Klavis AI
Open Source MCP Infra. Hosted MCP servers and MCP clients on Slack and Discord.
Work90210/APIFold
Turn any REST API into a hosted MCP server. 18 free public servers (GitHub, Stripe, Slack, OpenAI, Notion, and more) — no setup required, bring your own API key
by Work90210arikusi/deepseek-mcp-server
MCP server for DeepSeek AI with chat, reasoning, multi-turn sessions, function calling, thinking mode, and cost tracking.
by arikusihashgraph-online/hashnet-mcp-js
MCP server for the Registry Broker. Discover, register, and chat with AI agents on the Hashgraph network.
by hashgraph-onlineprofullstack/mcp-server
A comprehensive MCP server aggregating 20+ tools including SEO optimization, document conversion, domain lookup, email validation, QR generation, weather data,
by profullstackWayStation-ai/mcp
Seamlessly and securely connect Claude Desktop and other MCP hosts to your favorite apps (Notion, Slack, Monday, Airtable, etc.). Takes less than 90 secs.
by waystation-aiCompare Server Telegram Notes with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All communication MCPs
