Skip to main content
Glama
AI-Guru

Straight Connect

by AI-Guru

Straight Connect

MCP server for communication service connectors. Currently supports Telegram with multi-account configuration. Designed for extensibility — more services (Slack, Discord, email, etc.) can be added later.

Architecture

mcp/
├── server.py            # FastAPI + FastMCP entry point
├── telegram_service.py  # Shared Telegram service layer
├── telegram_api.py      # REST API routes
├── telegram.py          # MCP tool definitions + config
├── requirements.txt     # Server dependencies
└── Dockerfile

src/
├── config.py          # Generates mcp.json from .env
└── chat.py            # Gradio + LangChain ReAct chat app

docker-compose.yaml
pyproject.toml
.env                   # Your configuration (not committed)
.env.example           # Configuration template

The server exposes two interfaces:

  • MCP for AI agent tool use

  • REST API for direct HTTP access

Both interfaces use the same underlying TelegramService layer, ensuring consistent behavior.

Setup

  1. Copy the environment template and fill in your values:

cp .env.example .env
  1. Get bot tokens from @BotFather on Telegram and add them to .env.

  2. Start the MCP server:

docker compose up --build -d
  1. Verify it's running:

docker compose logs mcp

Configuration

All configuration lives in .env. See .env.example for the full template.

Telegram Accounts

# Comma-separated account labels
TELEGRAM_ACCOUNTS=nietzsche,aurelia

# Per-account bot tokens (label uppercased)
TELEGRAM_NIETZSCHE_BOT_TOKEN=your-token-here
TELEGRAM_AURELIA_BOT_TOKEN=your-token-here

Tool Levels

Control which Telegram tools are available per account. Set a global default and optionally override per account:

# Global default
TELEGRAM_LEVEL=basic

# Per-account override
TELEGRAM_NIETZSCHE_LEVEL=standard
TELEGRAM_AURELIA_LEVEL=full

Level

Tools (cumulative)

basic

get_me, send_message, get_updates

standard

+ forward_message, edit_message_text, delete_message, send_photo, send_document

advanced

+ get_chat, send_location, send_poll, pin_chat_message, unpin_chat_message, get_chat_member_count, get_chat_member

full

+ send_audio, send_video, send_voice, send_sticker, copy_message, set_message_reaction, leave_chat, send_contact, send_venue

Allowed Chats

Optionally restrict which chats a bot account can interact with. If set, any tool call targeting a chat not in the list will be rejected. If not set, all chats are allowed.

# Comma-separated chat IDs (user IDs, group IDs, @channel_usernames)
TELEGRAM_NIETZSCHE_ALLOWED_CHATS=123456789,-1001234567890
TELEGRAM_AURELIA_ALLOWED_CHATS=987654321,@mychannel

This applies to all tools that take a chat_id parameter. For forward_message and copy_message, both source and destination chats are checked.

Allowed User IDs

Restrict which Telegram users a bot account will interact with. Incoming updates from non-listed users are silently filtered out by get_updates. If not set, all users are allowed and a warning is logged at startup.

TELEGRAM_NIETZSCHE_ALLOWED_USER_IDS=123456789
TELEGRAM_AURELIA_ALLOWED_USER_IDS=5138099108,987654321

MCP Port

MCP_PORT=9831

Chat Model

Used by uv run chat for the Gradio test interface:

OPENAI_API_BASE=http://localhost:8000/v1
OPENAI_API_KEY=not-needed
CHAT_MODEL=openai:your-model-name

MCP Endpoints

Each account gets its own endpoint scoped by service and account label:

http://localhost:9831/mcp/telegram/<account>

Examples:

  • http://localhost:9831/mcp/telegram/nietzsche

  • http://localhost:9831/mcp/telegram/aurelia

There is no shared /mcp endpoint — each URL is exclusive to one account. This enables MCP clients to connect per-account with distinct tool namespaces.

REST API

A REST API is available alongside MCP for direct HTTP access. Both interfaces use the same underlying service layer.

Base URL: http://localhost:9831/api/telegram/{account}/...

Swagger docs: http://localhost:9831/docs

Endpoints

Method

Endpoint

Description

Level

GET

/{account}/me

Get bot info

basic

POST

/{account}/chats/{chat_id}/messages

Send a message

basic

GET

/{account}/updates

Get updates (with auto-acknowledge)

basic

POST

/{account}/chats/{chat_id}/forward

Forward a message

standard

PUT

/{account}/chats/{chat_id}/messages

Edit a message

standard

DELETE

/{account}/chats/{chat_id}/messages/{message_id}

Delete a message

standard

POST

/{account}/chats/{chat_id}/photos

Send a photo

standard

POST

/{account}/chats/{chat_id}/documents

Send a document

standard

GET

/{account}/chats/{chat_id}

Get chat info

advanced

POST

/{account}/chats/{chat_id}/location

Send a location

advanced

POST

/{account}/chats/{chat_id}/polls

Send a poll

advanced

POST

/{account}/chats/{chat_id}/pin

Pin a message

advanced

POST

/{account}/chats/{chat_id}/unpin

Unpin a message

advanced

GET

/{account}/chats/{chat_id}/member-count

Get member count

advanced

GET

/{account}/chats/{chat_id}/members/{user_id}

Get member info

advanced

POST

/{account}/chats/{chat_id}/audio

Send audio

full

POST

/{account}/chats/{chat_id}/video

Send video

full

POST

/{account}/chats/{chat_id}/voice

Send voice message

full

POST

/{account}/chats/{chat_id}/stickers

Send sticker

full

POST

/{account}/chats/{chat_id}/copy

Copy a message

full

POST

/{account}/chats/{chat_id}/reactions

Set reaction

full

POST

/{account}/chats/{chat_id}/leave

Leave chat

full

POST

/{account}/chats/{chat_id}/contacts

Send contact

full

POST

/{account}/chats/{chat_id}/venues

Send venue

full

Examples

# Get bot info
curl http://localhost:9831/api/telegram/aurelia/me

# Send a message
curl -X POST http://localhost:9831/api/telegram/aurelia/chats/123456789/messages \
  -H "Content-Type: application/json" \
  -d '{"text": "Hello!"}'

# Get updates (auto-acknowledged)
curl "http://localhost:9831/api/telegram/aurelia/updates?limit=10"

# Get updates without acknowledging
curl "http://localhost:9831/api/telegram/aurelia/updates?auto_acknowledge=false"

Client Tools

Generate mcp.json

Print the MCP client configuration derived from your .env:

uv run config

Output:

{
  "mcpServers": {
    "nietzsche": {
      "url": "http://localhost:9831/mcp/telegram/nietzsche"
    },
    "aurelia": {
      "url": "http://localhost:9831/mcp/telegram/aurelia"
    }
  }
}

Chat Interface

Launch a Gradio web UI that connects to all configured MCP servers with a LangChain ReAct agent:

uv run chat

On startup it will:

  1. Connect to each configured MCP server

  2. List all available tools per account

  3. Test the configured chat model

  4. Launch the Gradio interface

Tool names are prefixed with the account label for disambiguation (e.g., nietzsche_telegram_send_message, aurelia_telegram_get_updates).

How It Works

  • Shared service layer: Both MCP tools and REST API use TelegramService for all Telegram operations, ensuring consistent behavior

  • URL routing: ASGI middleware rewrites /mcp/<service>/<account> to the internal FastMCP endpoint and sets the account context via contextvars

  • Dynamic registration: Only configured services register their tools. If TELEGRAM_ACCOUNTS is empty, no Telegram tools exist

  • Level gating: Tools are registered based on the maximum level across all accounts. Per-account level checks happen at call time, returning an error if the account's level is insufficient

  • Chat whitelisting: Optional per-account ALLOWED_CHATS restricts which chats the bot can interact with

  • User filtering: Optional per-account ALLOWED_USER_IDS filters incoming updates to only include messages from specified users

  • Auto-acknowledge updates: By default, get_updates automatically acknowledges retrieved updates so they won't be returned again on subsequent calls

  • Extensibility: New services follow the same pattern — add a config class, register tools conditionally, and the middleware routes automatically via /mcp/<service>/<account>

-
security - not tested
F
license - not found
-
quality - not tested

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/AI-Guru/mmxxvi_straight_connect'

If you have feedback or need assistance with the MCP directory API, please join our Discord server