Back to MCP directory
publicPublicdnsLocal runtime

Gotify Notifications

MCP-gotify是一个用于发送Gotify推送通知的MCP服务器

article

README

🚀 MCP-gotify

MCP-gotify 是一个用于发送 Gotify 推送通知的 MCP 服务器,它能帮助用户方便地将通知推送到 Gotify 平台。

🚀 快速开始

本项目提供了两种安装方式,可根据需求选择。

📦 安装指南

标准输入输出

您可以通过配置 JSON 文件来使用标准输入输出方式安装。以下是配置示例:

{
    "mcpServers": {
        "mcp-gotify": {
            "command": "uvx",
            "args": ["mcp-gotify"],
            "env": {
                "GOTIFY_SERVER": "http://localhost:2081", // 请将此替换为您的Gotify服务器地址
                "GOTIFY_TOKEN": "YOUR TOKEN" // 在Gotify中获取此令牌
            }
        }
    }
}

⚠️ 重要提示

请务必将 GOTIFY_SERVER 替换为您实际的 Gotify 服务器地址,将 GOTIFY_TOKEN 替换为您在 Gotify 中获取的令牌。

单次执行脚本(SSE)

若您选择使用单次执行脚本(SSE)的方式安装,可按以下步骤操作:

git clone https://github.com/SecretiveShell/mcp-gotify
cd mcp-gotify
uv run mcp-gotify-sse

📄 许可证

本项目采用 MIT 许可证。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client