Metadata-Version: 2.4
Name: mcp-notify
Version: 0.1.0b2
Summary: MCP Server for notify
Project-URL: Repository, https://github.com/aahl/mcp-notify
License: MIT
License-File: LICENSE
Keywords: llm,mcp,notify,telegram,weixin,wework
Requires-Python: >=3.10
Requires-Dist: fastmcp>=2.0.0
Requires-Dist: python-telegram-bot>=22.0
Description-Content-Type: text/markdown

# 💬 Notify MCP Server

<!-- mcp-name: io.github.aahl/mcp-notify -->

提供消息推送的 MCP (Model Context Protocol) 服务器，支持企业微信群机器人、Telegram


## 安装

### 方式1: uvx
```yaml
{
  "mcpServers": {
    "mcp-notify": {
      "command": "uvx",
      "args": ["mcp-notify"],
      "env": {
        "WEWORK_BOT_KEY": "your-wework-bot-key", # 企业微信群机器人key
        "TELEGRAM_DEFAULT_CHAT": "-10000000000", # Telegram Chat ID
        "TELEGRAM_BOT_TOKEN": "123456789:ABCDE", # Telegram Bot Token
        "TELEGRAM_BASE_URL": "https://api.telegram.org", # Optional
      }
    }
  }
}
```

### 方式2: Docker
```bash
mkdir /opt/mcp-notify
cd /opt/mcp-notify
wget https://raw.githubusercontent.com/aahl/mcp-notify/refs/heads/main/docker-compose.yml
docker-compose up -d
```
```yaml
{
  "mcpServers": {
    "mcp-notify": {
      "url": "http://0.0.0.0:8809/mcp" # Streamable HTTP
    }
  }
}
```
