A Telegram bot for downloading Reddit posts.
i.redd.itv.redd.itx.redd.it (for example, YouTube videos)x.redd.it hosts from which this bot can downloadFirst, install FFmpeg. On Debian or Ubuntu, simply run apt install ffmpeg. Then, clone and
build the project using the following steps.
git clone https://github.com/HirbodBehnam/RedditDownloaderBot
cd RedditDownloaderBot
go build ./cmd/RedditDownloaderBot/
To use the bot, you will need Reddit and Telegram tokens. Start by creating a Reddit application. Go
to https://www.reddit.com/prefs/apps and click on “are you a developer? create an app...” Choose a name, select script
as the type of application, input something in the redirect URI field, and click on “create app.”

You will be given two tokens: a client ID and a client secret—as shown in the image below.

Interact with BotFather to create a bot and obtain its token. Additionally, you can use this guide.
Your token will look something like this:
4839574812:AAFD39kkdpWt3ywyRZergyOLMaJhac60qc
Now that you have the necessary tokens, edit the docker-compose.yml file and set the environment variables as such:
export CLIENT_ID=p-jcoLKBynTLew
export CLIENT_SECRET=gko_LXELoV07ZBNUXrvWZfzE3aI
export BOT_TOKEN=1234567:4TT8bAc8GHUspu3ERYn-KGcvsvGB9u_n4ddy
You can run the bot using docker-compose. In case you don’t have docker-compose installed, follow the steps below.
sudo curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-linux-x86_64" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
Lastly, run docker-compose up --build inside the RedditDownloaderBot directory to build and run the bot.
You can configure the bot to allow access to only a group of users. This is useful for deploying private bots. To do so,
you need to create a whitelist that consists of Telegram user IDs. You can obtain user IDs
using GetIDs Bot. Next, create the environment variable ALLOWED_USERS and set its value to
user IDs, separated by a comma.
export ALLOWED_USERS=1,2,3
You can keep the bot from downloading NSFW posts by setting the following environment variable:
export DENY_NSFW=true
The post link is included in the caption by default. You can disable it by setting the following environment variable:
export DISABLE_LINK_IN_CAPTION=true
The proxy to download the Imgur media through it. Imgur sometimes blocks some IP addresses like Hetzner for example. It's interesting because even with authorization it does not work. Even accessing through the browser it does not work either. So, someone might use a proxy (like Cloudflare Warp) to bypass this restriction.
export IMGUR_PROXY=http://127.0.0.1:10809
$ claude mcp add RedditDownloaderBot \
-- python -m otcore.mcp_server <graph>