Ai Notify MCP Server

一个为支持 MCP 协议的代码编辑器设计的 AI 通知服务器,当 AI 完成回答时自动发送系统通知,提升使用体验

Local serverstdioTypeScript

What is the Ai Notify MCP MCP server?

If you already use Ai Notify MCP, the ai notify mcp mcp server is the piece that lets your assistant work with it directly. 一个为支持 MCP 协议的代码编辑器设计的 AI 通知服务器,当 AI 完成回答时自动发送系统通知,提升使用体验.

What the server does

const customHandler: NotificationHandler = { async show(options) { // 你的自定义逻辑 console.log(显示通知: ${options.title}); } }; ```

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • macOS — 系统通知中心
  • Windows — Windows 通知系统
  • Linux — libnotify
  • Node.js — ≥ 14.0.0
  • title — string
  • message — string
  • sound — boolean
  • responseLength — number
  • icon — string
  • defaultTitle — string
  • defaultMessage — string

Installation

The server ships on npm as npm, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Where it fits

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Ai Notify MCP's toolset — macOS, Windows, Linux and 8 more — is a fair guide to whether it matches your workflow. It is maintained by zhiyingzzhou; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Ai Notify MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 11 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Ai Notify MCP.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
macOS系统通知中心
WindowsWindows 通知系统
Linuxlibnotify
Node.js≥ 14.0.0
titlestring
messagestring
soundboolean
responseLengthnumber
iconstring
defaultTitlestring
defaultMessagestring

How to install the Ai Notify MCP MCP server

{
  "mcpServers": {
    "ai-notify": {
      "command": "node",
      "args": ["/绝对路径/ai-notify-mcp/dist/index.js"],
      "autoRun": true
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Ai Notify MCP to macOS.
  • Use Ai Notify MCP to Windows.
  • Use Ai Notify MCP to Linux.

Frequently asked questions

It connects Ai Notify MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 11 tools (macOS, Windows, Linux, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Ai Notify MCP directly.