Skip to main content
Glama
osamadev

Financial MCP Server

by osamadev
telegram_alerts.py454 B
import httpx import os TELEGRAM_BOT_TOKEN = os.getenv("TELEGRAM_BOT_TOKEN") TELEGRAM_USER_ID = os.getenv("TELEGRAM_USER_ID") async def send_telegram_alert(message: str): url = f"https://api.telegram.org/bot{TELEGRAM_BOT_TOKEN}/sendMessage" payload = { "chat_id": TELEGRAM_USER_ID, "text": message, "parse_mode": "Markdown" } async with httpx.AsyncClient() as client: await client.post(url, json=payload)

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/osamadev/financial_mcp_server'

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