Telegram Agent for Codex

Telegram Agent for Codex

Privacy-first Telegram MCP server enabling maintainers to triage chats, inspect context, search messages, draft replies, and send authorized messages locally without a cloud relay.

Category
Visit Server

README

Telegram Agent for Codex

Privacy-first Telegram tools for Codex and other MCP clients.

Telegram Agent is a local MCP server and Codex plugin that helps maintainers and ordinary users triage Telegram chats, inspect reply-ready context, search messages as local memory, build personal briefings, draft responses, and send explicitly authorized messages without running a cloud relay.

Why It Exists

Many open-source projects coordinate releases, bug reports, testers, and contributors in Telegram. That creates a messy support surface for maintainers: urgent questions get buried, context is spread across chats, and AI assistants need a safe way to help without leaking private messages or sending uncontrolled replies.

Telegram Agent solves that by keeping the Telegram API session on the user's machine and exposing narrow MCP tools for:

  • unread inbox briefs;
  • dialog lookup;
  • selected-chat context;
  • message search;
  • local reply drafts;
  • controlled direct sends to explicitly authorized chats.
  • personal command-center tools for smart inbox ranking, daily digests, follow-ups, contact briefs, local memory search, and secret-safe search.

Safety Model

  • Local first: no hosted backend and no third-party relay.
  • Read-scoped by default: tools fetch small windows unless the user asks for more.
  • Draft-first replies: normal replies are saved as local drafts before sending.
  • Explicit send gate: sending requires TELEGRAM_AGENT_ALLOW_SEND=1.
  • Contact-scoped autonomy: direct sends are only for a resolved chat that the user explicitly authorized in the current task.
  • Secret-safe user tools: personal search and digest surfaces redact passwords, tokens, codes, and key-like values by default; values are included only when explicitly requested with an authorization basis.
  • No Telegram Desktop scraping: the public project does not read, request, parse, copy, or convert Telegram Desktop tdata.
  • Secrets stay outside the repo in %USERPROFILE%\.codex\telegram-agent.

Install

cd path\to\telegram-agent
npm install
npm run setup
npm run status

npm run setup starts a local browser wizard on 127.0.0.1. It lets you save the Telegram API id/hash, choose QR login or phone-code login, and see the local state paths after authorization.

QR login is preferred. In Telegram mobile, open Settings > Devices > Link Desktop Device and scan the browser QR code.

Terminal fallback commands are also available:

npm run login:qr
npm run login

Telegram may apply long FLOOD_WAIT limits after repeated phone-code requests.

Enable Sending

By default, sending is disabled. To allow send tools for a Codex-launched MCP server, configure:

{
  "env": {
    "TELEGRAM_AGENT_ALLOW_SEND": "1"
  }
}

The local plugin config in this repo already sets that value for the telegram-agent MCP server. Even with sending enabled, the agent rules still limit direct sends to a chat that the user explicitly authorized.

Data Stored Locally

  • %USERPROFILE%\.codex\telegram-agent\config.json: Telegram API id/hash.
  • %USERPROFILE%\.codex\telegram-agent\session.txt: GramJS string session.
  • %USERPROFILE%\.codex\telegram-agent\drafts\: unsent local reply drafts.
  • %USERPROFILE%\.codex\telegram-agent\telegram-agent.sqlite: local source/message cache, digest profiles, watchlists, action items, contact memory, reply sessions, and auth metadata.

The setup wizard never stores a Telegram 2FA password. SQLite stores auth status, account summary, fingerprints, and events, but not the API hash or full GramJS session.

Delete that directory to remove local Telegram Agent state. To fully revoke the Telegram API session, also remove the session from Telegram settings.

MCP Tools

  • telegram_setup_status: check credentials, session, dependencies, and send mode.
  • telegram_auth_status: inspect local auth setup status without connecting to Telegram.
  • telegram_start_setup: start the local browser setup wizard and return its URL.
  • telegram_me: show the authorized Telegram account summary.
  • telegram_list_dialogs: list recent dialogs with optional unread filtering.
  • telegram_find_dialogs: search dialogs by title, username, id, or ref.
  • telegram_inbox_brief: collect unread/recent chats with compact message snippets.
  • telegram_recent_messages: fetch recent messages from one selected chat.
  • telegram_chat_context: fetch a selected chat with stats, pending incoming count, questions, priority terms, and messages.
  • telegram_search_chat_messages: search within one selected chat.
  • telegram_create_draft: save a reply draft without sending it.
  • telegram_list_drafts: list pending local drafts.
  • telegram_recent_audit_events: inspect local draft/send audit events without full message text.
  • telegram_delete_draft: delete one pending draft.
  • telegram_send_draft: send a reviewed saved draft.
  • telegram_send_message: send one direct message when sending is enabled and the user explicitly authorized that resolved chat.
  • Cache and search: telegram_sync_sources, telegram_sync_recent_messages, telegram_cache_status, telegram_search_cached_messages.
  • Digests: telegram_suggest_sources, telegram_rank_sources, telegram_create_digest_profile, telegram_list_digest_profiles, telegram_run_digest, telegram_run_topic_digest, telegram_explain_digest_cluster.
  • Maintainer intelligence: telegram_needs_reply, telegram_extract_actions, telegram_followup_tracker, telegram_weekly_maintainer_report.
  • OSS maintainer bridge: telegram_detect_prompt_injection, telegram_create_github_issue_drafts, telegram_build_maintainer_context.
  • Personal productivity: telegram_daily_personal_digest, telegram_smart_inbox, telegram_memory_search, telegram_contact_brief, telegram_personal_followups, telegram_sensitive_search, telegram_personal_briefing.
  • Watchlists and research: telegram_create_watchlist, telegram_list_watchlists, telegram_run_watchlist, telegram_research_topic, telegram_detect_trends.
  • Safe autonomy: telegram_start_reply_session, telegram_reply_session_status, telegram_stop_reply_session, telegram_contact_context.

Maintainer Workflow

  1. Use telegram_inbox_brief for a compact unread overview.
  2. Use telegram_find_dialogs to resolve a person or group.
  3. Use telegram_chat_context for reply-ready context and pending-message stats.
  4. Use telegram_create_draft for normal proposed replies.
  5. Use telegram_send_message only in an explicitly authorized ongoing chat task.

Digest Workflow

  1. Run telegram_sync_sources.
  2. Run telegram_sync_recent_messages for selected sources or categories.
  3. Use telegram_suggest_sources for a phrase such as AI, Codex, MCP, work, or support.
  4. Use telegram_run_topic_digest for one-off digests or telegram_create_digest_profile plus telegram_run_digest for recurring digests.
  5. Ask Codex to turn the structured clusters into final prose with source refs and message refs.

Development

npm run check
npm test
npm run self-test
npm run ci
npm run demo:digest
npm run demo:needs-reply
npm run demo:weekly-report
npm run demo:prompt-injection
npm run demo:issue-drafts
npm run demo:context
npm run demo:oss-report
npm run demo:personal-digest
npm run demo:smart-inbox
npm run demo:memory-search
npm run demo:contact-brief
npm run demo:personal-followups
npm run demo:sensitive-search
npm run demo:personal-briefing

The test suite uses Node's built-in node:test runner and avoids live Telegram writes.

The demo commands use synthetic fixtures only; they do not require Telegram credentials.

The repository includes a pinned GitHub Actions template at docs/ci-github-actions.yml. Copy it to .github/workflows/ci.yml when publishing with a GitHub token that has the workflow scope.

Project Status

This project is early but usable locally. Implemented high-impact features include:

  • SQLite cache with FTS5 for fast local search;
  • local browser setup wizard with QR and phone-code login;
  • topic digests with source suggestions and dedupe clusters;
  • maintainer-focused needs-reply, action extraction, follow-up tracking, and weekly reports;
  • prompt-injection detection over untrusted Telegram text;
  • GitHub issue draft generation from Telegram bug reports and feature requests;
  • compact maintainer context packs for Codex;
  • ordinary-user personal briefing, smart inbox, contact briefs, follow-up tracking, memory search, and secret-safe search;
  • watchlists, research mode, trend detection, scoped reply sessions, and contact memory;
  • sanitized demo fixtures;

Next milestones:

  • benchmark numbers;
  • install examples for more MCP clients.

See ROADMAP.md for the full plan.

OSS Support Pitch

For grant or OSS-support submissions, see docs/OPENAI_OSS_APPLICATION.md.

License

MIT. See LICENSE.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured