Skip to content
VS Code

Notify MCP Server for VS Code

io.github.aahl/mcp-notify

MCP Server for notify to Weixin, Telegram, Bark, Lark, Feishu, DingTalk

client:VS Code transport:stdio runtime:pypi

Install Notify MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wework-bot-key",
      "description": "WEWORK_BOT_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wework-app-corpid",
      "description": "WEWORK_APP_CORPID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wework-app-secret",
      "description": "WEWORK_APP_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wework-app-agentid",
      "description": "WEWORK_APP_AGENTID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wework-app-touser",
      "description": "WEWORK_APP_TOUSER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dingtalk-bot-key",
      "description": "DINGTALK_BOT_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "lark-bot-key",
      "description": "LARK_BOT_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "feishu-bot-key",
      "description": "FEISHU_BOT_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "telegram-default-chat",
      "description": "TELEGRAM_DEFAULT_CHAT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "telegram-bot-token",
      "description": "TELEGRAM_BOT_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "push-plus-token",
      "description": "PUSH_PLUS_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "mcp-notify": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-notify"
      ],
      "env": {
        "WEWORK_BOT_KEY": "${input:wework-bot-key}",
        "WEWORK_APP_CORPID": "${input:wework-app-corpid}",
        "WEWORK_APP_SECRET": "${input:wework-app-secret}",
        "WEWORK_APP_AGENTID": "${input:wework-app-agentid}",
        "WEWORK_APP_TOUSER": "${input:wework-app-touser}",
        "DINGTALK_BOT_KEY": "${input:dingtalk-bot-key}",
        "LARK_BOT_KEY": "${input:lark-bot-key}",
        "FEISHU_BOT_KEY": "${input:feishu-bot-key}",
        "TELEGRAM_DEFAULT_CHAT": "${input:telegram-default-chat}",
        "TELEGRAM_BOT_TOKEN": "${input:telegram-bot-token}",
        "PUSH_PLUS_TOKEN": "${input:push-plus-token}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Notify MCP Server in other clients