We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/StoyPenny/mcp-kilo-telegram'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# Startup script for Telegram MCP Server
# This script activates the virtual environment and runs the server
# Get the directory where this script is located
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# Activate virtual environment
source "$SCRIPT_DIR/venv/bin/activate"
# Run the server
python "$SCRIPT_DIR/telegram_server.py"