MCP.so
Sign In

Windows 10 および macOS 通知機能付き MCP サーバー

@naru-sensei

About Windows 10 および macOS 通知機能付き MCP サーバー

A Model Context Protocol (MCP) server with Windows 10 desktop notifications support. It processes notification requests from MCP clients like VSCode Cline and displays customizable desktop notifications using win10toast.

Basic information

Category

Other

License

MIT license

Runtime

python

Transports

stdio

Publisher

naru-sensei

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "-toast-mcp-server": {
      "command": "python",
      "args": [
        "mcp_server.py",
        "--port",
        "8000",
        "--host",
        "0.0.0.0"
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is Windows 10 および macOS 通知機能付き MCP サーバー?

Windows 10 および macOS 通知機能付き MCP サーバー is a Model Context Protocol (MCP) server that displays desktop notifications on Windows 10 (using win10toast) and macOS (using osascript). It accepts requests from MCP clients such as VSCode Cline and triggers notifications based on those requests.

How to use Windows 10 および macOS 通知機能付き MCP サーバー?

Run the server with Python 3.8 or higher using command-line arguments, for example: python mcp_server.py --port 8000 --host 0.0.0.0. Then use an MCP client (e.g., VSCode Cline) to send notification commands over the MCP protocol.

Key features of Windows 10 および macOS 通知機能付き MCP サーバー

  • Implements MCP protocol for client communication
  • Displays desktop notifications on Windows 10 and macOS
  • Customizable notification parameters (title, message, duration, etc.)
  • Configurable host (default localhost) and port (default 8000)
  • Handles multiple concurrent client connections
  • Supports notification types: info, warning, error, success

Use cases of Windows 10 および macOS 通知機能付き MCP サーバー

  • Receive real-time alerts from MCP clients and display as desktop notifications
  • Integrate with VSCode Cline to show system notifications during development
  • Provide visual feedback for automated workflows or scripts
  • Test cross-platform notification capabilities

FAQ from Windows 10 および macOS 通知機能付き MCP サーバー

What are the runtime requirements?

Requires Python 3.8 or higher. On Windows, the win10toast library is needed; on macOS, osascript is built-in.

What transports and authentication does it support?

It uses the MCP protocol over TCP with configurable network interfaces (e.g., 0.0.0.0). No authentication is documented.

Can it run simultaneously on both Windows and macOS?

No, each server instance runs on one operating system and uses that OS’s notification method.

What notification parameters are supported?

Title, message content, display duration, optional icon (Windows only), optional subtitle (macOS only), optional sound (macOS only), and notification type (info, warning, error, success).

What is the default host and port?

Default host is localhost (127.0.0.1) and default port is 8000. Both are configurable via command-line arguments or environment variables.

Comments

More Other MCP servers