PluginBench
MCP Server

io.github.kcofoni/gotify-mcp MCP Server

io.github.kcofoni/gotify-mcp

What is the io.github.kcofoni/gotify-mcp MCP server?

MCP server for Gotify push notifications - send messages and manage apps/clients.

How to install io.github.kcofoni/gotify-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • GOTIFY_URL
    required

    The full base URL of your Gotify server (e.g., http://localhost:80 or https://gotify.example.com)

  • GOTIFY_CLIENT_TOKEN
    secret

    A client token from your Gotify server with permissions to manage applications, clients, and messages

  • GOTIFY_APP_TOKEN
    secret

    An application token for sending messages via create_message tool

  • GOTIFY_MCP_PORT

    Port for the MCP SSE server (default: 3020)

  • GOTIFY_MCP_TRANSPORT

    Transport type: 'sse' or 'stdio' (default: sse)

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "gotify-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "docker.io/kcofoni/gotify-mcp:v1.0.1"
      ],
      "env": {
        "GOTIFY_URL": "<YOUR_GOTIFY_URL>",
        "GOTIFY_CLIENT_TOKEN": "<YOUR_GOTIFY_CLIENT_TOKEN>",
        "GOTIFY_APP_TOKEN": "<YOUR_GOTIFY_APP_TOKEN>",
        "GOTIFY_MCP_PORT": "<YOUR_GOTIFY_MCP_PORT>",
        "GOTIFY_MCP_TRANSPORT": "<YOUR_GOTIFY_MCP_TRANSPORT>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "gotify-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "docker.io/kcofoni/gotify-mcp:v1.0.1"
      ],
      "env": {
        "GOTIFY_URL": "<YOUR_GOTIFY_URL>",
        "GOTIFY_CLIENT_TOKEN": "<YOUR_GOTIFY_CLIENT_TOKEN>",
        "GOTIFY_APP_TOKEN": "<YOUR_GOTIFY_APP_TOKEN>",
        "GOTIFY_MCP_PORT": "<YOUR_GOTIFY_MCP_PORT>",
        "GOTIFY_MCP_TRANSPORT": "<YOUR_GOTIFY_MCP_TRANSPORT>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "gotify-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "docker.io/kcofoni/gotify-mcp:v1.0.1"
      ],
      "env": {
        "GOTIFY_URL": "<YOUR_GOTIFY_URL>",
        "GOTIFY_CLIENT_TOKEN": "<YOUR_GOTIFY_CLIENT_TOKEN>",
        "GOTIFY_APP_TOKEN": "<YOUR_GOTIFY_APP_TOKEN>",
        "GOTIFY_MCP_PORT": "<YOUR_GOTIFY_MCP_PORT>",
        "GOTIFY_MCP_TRANSPORT": "<YOUR_GOTIFY_MCP_TRANSPORT>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "gotify-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "docker.io/kcofoni/gotify-mcp:v1.0.1"
      ],
      "env": {
        "GOTIFY_URL": "<YOUR_GOTIFY_URL>",
        "GOTIFY_CLIENT_TOKEN": "<YOUR_GOTIFY_CLIENT_TOKEN>",
        "GOTIFY_APP_TOKEN": "<YOUR_GOTIFY_APP_TOKEN>",
        "GOTIFY_MCP_PORT": "<YOUR_GOTIFY_MCP_PORT>",
        "GOTIFY_MCP_TRANSPORT": "<YOUR_GOTIFY_MCP_TRANSPORT>"
      }
    }
  }
}
Claude Code
claude mcp add gotify-mcp --env GOTIFY_URL=<YOUR_GOTIFY_URL> --env GOTIFY_CLIENT_TOKEN=<YOUR_GOTIFY_CLIENT_TOKEN> --env GOTIFY_APP_TOKEN=<YOUR_GOTIFY_APP_TOKEN> --env GOTIFY_MCP_PORT=<YOUR_GOTIFY_MCP_PORT> --env GOTIFY_MCP_TRANSPORT=<YOUR_GOTIFY_MCP_TRANSPORT> -- docker run -i --rm docker.io/kcofoni/gotify-mcp:v1.0.1

Related MCP servers

MCP server for Duplicati backup management — list, run, monitor and configure jobs from an LLM.

View repository →

MCP server for searching and reading PmWiki pages with text queries and group filtering.

View repository →