← Discover MCPs and Agents
A
MCPAI & MLMCP Registry

AwrAIter — Telegram channels

Telegram channels you administer: analytics, content plans, scheduled publishing. No userbot

Links

README

From the repo.

AwrAIter MCP Server

MCP Registry Transport Auth Docs

A remote MCP server for the Telegram channels you administer: read analytics, draft posts from your own scraped sources, build content plans, schedule and publish — from inside ChatGPT, Claude, or any MCP-capable client.

Not a userbot. No phone number, no login code, no .session file. The server acts through your AwrAIter account and reaches only the channels of the team you authorize.

Русская версия · Connection guide · Tool reference · awraiter.ai


Server

URLhttps://awraiter.ai/mcp
TransportStreamable HTTP
AuthenticationOAuth 2.1 (PKCE, dynamic client registration) or a personal access token
Registry nameai.awraiter/telegram
AvailabilityEvery plan, including the free tier

Quick start

You need an AwrAIter account (sign in with Telegram) and at least one connected channel.

Claude (web / desktop)

Settings → Connectors → Add custom connector, paste the URL, press Connect, and confirm access for the team you want.

https://awraiter.ai/mcp

Claude Code

claude mcp add --transport http awraiter https://awraiter.ai/mcp

Agent skill (Claude Code, Codex and other agents)

The AwrAiter_skills repository ships a skill with the full tool contract, authentication, the draft → check → preview → schedule workflow and the guardrails an agent should follow:

# Claude Code — as a plugin
claude plugin marketplace add MediaZione/AwrAiter_skills
claude plugin install awraiter@awraiter

# Codex and any other agent with skills
npx skills add MediaZione/AwrAiter_skills --skill awraiter

ChatGPT

AwrAiter is not in the ChatGPT plugin catalog yet — add it as your own MCP server: Settings → Security and login → Developer mode, then chatgpt.com/plugins → +, paste the URL, keep OAuth and press Connect. In a chat, pick it from the tools menu. The ChatGPT/Codex desktop form has no OAuth option; connect it with a token instead (see below).

Clients that take a JSON config

{
  "mcpServers": {
    "awraiter": {
      "type": "http",
      "url": "https://awraiter.ai/mcp"
    }
  }
}

Clients without OAuth (token auth)

Create a token in the panel under MCP connection — it is shown once, together with ready-to-paste snippets (Claude Code command, JSON config, cURL, Node.js) that already contain it — and send it as a header:

Authorization: Bearer YOUR_TOKEN

Step-by-step instructions for Claude, Claude Code, ChatGPT, Codex, Gemini CLI and Qwen Code are in docs/connect.md; ready-to-paste config files are in examples/.

Tools

25 tools. The ones that change something are marked ✍️ — everything else is read-only.

ToolWhat it does
list_teamsTeams you belong to; marks the active one
switch_team ✍️Switch the active team (membership is verified server-side)
list_channelsChannels owned by the active team
get_channelOne channel's profile: name, chat id, language, description
get_channel_statsSubscribers, reach, ER and dynamics over 1–90 days
get_channel_insightsWhat works for this audience, scored against the channel's own 30-day median
get_recent_postsMost recent published posts, newest first
search_channel_contentSemantic search over the channel's own posts and source material
search_sourcesSearch the channel's bound sources
draft_from_sourcesFreshest scraped sources not yet used in a post
deep_analyze ✍️Deep AI analysis of channel performance — the one tool that spends the team's AI credits
check_uniquenessIs this draft a near-duplicate of existing posts or a copy of a source?
score_postData-grounded quality signal for a draft, specific to this channel
preview_postExact message that would be sent — title, body, media, formatting
create_post_from_text ✍️Save a ready-to-publish draft from text the assistant wrote
schedule_post ✍️Publish a draft now, or schedule it for a given time
cancel_scheduled_post ✍️Cancel a scheduled post by its plan id
get_content_planThe channel's plan configuration and its slots
create_content_plan ✍️Create a content plan for a channel
find_free_slotEarliest slot in the plan with no post yet
get_channel_memoryThe channel's brand brief and banlist
set_brand_brief ✍️Replace the channel's brand/tone guidance
add_banlist_entry ✍️Add a forbidden word to the channel's banlist
remove_banlist_entry ✍️Remove a word from the banlist
get_playbookStep-by-step operator playbook for a workflow

What each tool returns, and the exact scope it needs, is in docs/tools.md.

Authentication

OAuth 2.1 with PKCE and dynamic client registration; redirect URIs are restricted to HTTPS or HTTP loopback, authorization codes are single-use, and refresh tokens rotate. A token is bound to one user, one team and one scope.

Personal access tokens come in two scopes:

ScopeAllows
readRead-only tools; every ✍️ tool is refused server-side
fullEverything the account can do in the panel

Tokens are listed, and can be revoked, in the panel under MCP connection.

Security model

Userbot-style Telegram MCP serversAwrAIter
What you hand overPhone number, login code, session fileAn OAuth grant to your own account
What it can reachEverything your account can — DMs, groups, private materialOnly the channels of the team you authorized
How it publishesAs youThrough the panel's own service admin, with the same permission checks as the UI
If the token leaksYour whole Telegram accountRevoke the token in the panel; nothing else is exposed

Every write goes through the same channel-level access control as the panel, and rate limits apply per token. The full model, and how to report a vulnerability, are in SECURITY.md.

About AwrAIter

AwrAIter is a panel for people who run Telegram channels: weekly content plans, AI drafts in your channel's tone, scheduled publishing, and analytics for everything published — growth, reach, ER/ERR, per-post performance, channel comparison, export to XLSX or Google Sheets. One channel is free forever; paid plans start at €9/month. See awraiter.ai.

Support and legal

  • Questions and issues: awraiter.ai/support
  • Terms of Service · Privacy Policy
  • Operated by Mediazione Italia S.r.l. Payments are handled by Stripe; we never see card numbers.
  • Your channel content stays yours — we do not train models on it unless you explicitly opt in (off by default).

License

Documentation and examples in this repository are released under the MIT License. The AwrAIter service itself is proprietary.

Config for your environment

Use the endpoint URL below in your config. No API key — you connect directly.

Tool

OS

Config file: ~/.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server": {
      "url": "https://awraiter.ai/mcp"
    }
  }
}

Paste into mcpServers in the config file. Restart Cursor after saving.

If this MCP is also published on mcpchannel.ai, you can subscribe from Browse and use the gateway config there instead.