Odel
Apprise RMCP

Apprise RMCP

Local
@jmagar1RustMITUpdated 1mo ago

Rust MCP server and CLI for Apprise notification fan-out across dozens of delivery backends.

apprise-rmcp

apprise-rmcp is a Rust MCP server and CLI for sending notifications through an Apprise API server.

It exposes one MCP tool, apprise, plus the rapprise CLI. Agents can send tagged notifications through a preconfigured Apprise server, run one-off Apprise URL sends, and check upstream health through stdio MCP, Streamable HTTP MCP, or direct shell commands.

30-second path: run npx -y apprise-rmcp health --json -> start loopback HTTP with APPRISE_MCP_HOST=127.0.0.1 npx -y apprise-rmcp serve -> call tools/call with {"action":"health"}.

Status: operational RMCP upstream-client server. Write-capable; notification sends are intentional side effects. HTTP MCP supports loopback dev mode, static bearer tokens, and Google OAuth through lab-auth.

Not for: replacing Apprise API, storing notification destinations in this repo, scheduling reminders, building a generic webhook relay, multi-tenant isolation, or passing upstream Apprise bearer tokens through MCP tool arguments.

Contents

Naming

SurfaceThis repo
Repositoryapprise-rmcp
Rust crateapprise-mcp
Binary / CLIrapprise
npm packageapprise-rmcp
npm binary aliasesapprise-rmcp, rapprise
MCP toolapprise
Config home~/.apprise on hosts, /data in containers
Env prefixesAPPRISE_*, APPRISE_MCP_*, APPRISE_RMCP_* for npm launcher controls

The repo and npm package use the RMCP family name, while the shipped binary uses the short Rust CLI name rapprise.

Capabilities And Boundaries

  • Send notifications through tags configured in the upstream Apprise API server.
  • Send one-off notifications to Apprise URL schemas with notify_url.
  • Check upstream Apprise API health.
  • Expose the send_alert prompt for critical alert workflows.
  • Provide setup and doctor commands for local plugin/runtime checks.
This repo ownsApprise ownsExplicitly out of scope
MCP/CLI projection, request validation, auth policy, response shaping, setup checks, and transport wiring.Notification delivery, configured destinations, tags, delivery backend credentials, upstream API semantics.Destination storage, scheduling, retry policy beyond upstream behavior, multi-tenant sandboxing, arbitrary webhook relay behavior.

Install

PathCommandBest forNotes
npm / npxnpx -y apprise-rmcp --helpLocal MCP clients and quick trials.Downloads the matching rapprise binary from GitHub Releases.
Release installercurl -fsSL https://raw.githubusercontent.com/jmagar/apprise-rmcp/main/scripts/install.sh | bashHost installs without Node.Installs rapprise for the current Linux host.
Docker / Composedocker compose up -dShared HTTP MCP deployments.Reads .env and exposes container port 40050.
Build from sourcecargo build --releaseDevelopment and audits.Produces target/release/rapprise.
Pluginclaude plugin install plugins/appriseClaude Code local plugin setup from this checkout.Uses the packaged setup hook and local runtime metadata.

npm / npx

Run the stdio MCP server or CLI without a manual binary install:

npx -y apprise-rmcp --help
npx -y apprise-rmcp mcp
npx -y apprise-rmcp health --json

The npm package downloads rapprise during postinstall. Override download behavior only when testing packaging:

VariablePurpose
APPRISE_RMCP_SKIP_DOWNLOAD=1Skip postinstall binary download.
APPRISE_RMCP_VERSION or APPRISE_RMCP_BINARY_VERSIONSelect the GitHub Release tag.
APPRISE_RMCP_REPOSelect the GitHub repo used for release downloads.
APPRISE_RMCP_RELEASE_BASE_URLSelect a custom release base URL.

Build From Source

git clone https://github.com/jmagar/apprise-rmcp
cd apprise-rmcp
cargo build --release
./target/release/rapprise --help

Minimum supported Rust version: 1.86.

Quickstart

1. Start Or Point At Apprise API

The default upstream is http://localhost:8000.

docker run --rm -p 8000:8000 caronc/apprise:latest

Use APPRISE_URL when the API server is elsewhere:

export APPRISE_URL=http://100.120.242.29:8766

Set APPRISE_TOKEN only when your Apprise API server requires bearer auth:

export APPRISE_TOKEN=...

2. Run A Safe CLI Call

npx -y apprise-rmcp health --json

3. Start Loopback HTTP MCP

APPRISE_MCP_HOST=127.0.0.1 npx -y apprise-rmcp serve

In another shell:

curl -sf http://127.0.0.1:40050/health

4. Make A First MCP Call

curl -s -X POST http://127.0.0.1:40050/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"apprise","arguments":{"action":"health"}}}'

Client Configuration

Claude Code Stdio

{
  "mcpServers": {
    "apprise": {
      "command": "npx",
      "args": ["-y", "apprise-rmcp", "mcp"],
      "env": {
        "APPRISE_URL": "http://localhost:8000"
      }
    }
  }
}

Claude Code HTTP

{
  "mcpServers": {
    "apprise": {
      "type": "http",
      "url": "http://127.0.0.1:40050/mcp",
      "headers": {
        "Authorization": "Bearer ${APPRISE_MCP_TOKEN}"
      }
    }
  }
}

Codex / Labby Gateway

Register Apprise through Labby as an HTTP upstream when sharing one long-running server, or run it directly as stdio for local-only use.

[mcp_servers.apprise]
command = "npx"
args = ["-y", "apprise-rmcp", "mcp"]

Generic MCP JSON

{
  "command": "rapprise",
  "args": ["mcp"],
  "env": {
    "APPRISE_URL": "http://localhost:8000"
  }
}

Do not put APPRISE_TOKEN, OAuth secrets, SSH keys, passwords, or upstream bearer tokens in MCP tool arguments. Use env, config files, or the MCP client's secret storage.

Runtime Surfaces

SurfaceStatusEntry pointPurpose
MCP stdioSupportedrapprise mcp, npx -y apprise-rmcp mcpLocal child-process MCP clients.
MCP HTTPSupportedrapprise serve, POST /mcpStreamable HTTP MCP for local or shared server deployments.
CLISupportedrapprise <command>Scriptable parity and debugging.
PromptSupportedsend_alertReusable critical-alert workflow.
REST APINot shippedN/AApprise API already owns the REST API.
Web UINot shippedN/AApprise API already owns the web UI.

MCP Tool Reference

One MCP tool is exposed: apprise. Pass the required action argument to select the operation.

Read Actions

ActionDescriptionRequired paramsOptional params
healthCheck Apprise API server health.nonenone
helpReturn built-in markdown tool help.nonenone

Write Actions

ActionDescriptionRequired paramsOptional params
notifySend to a configured Apprise tag, or all configured services when tag is omitted.bodytag, title, type
notify_urlSend a stateless one-off notification to one or more Apprise URL schemas.urls, bodytitle, type

Notification Types

TypeMeaning
infoInformational notification.
successSuccessful operation.
warningNon-critical warning.
failureCritical failure or error.

MCP Call Examples

curl -s -X POST http://127.0.0.1:40050/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"apprise","arguments":{"action":"health"}}}'
{
  "name": "apprise",
  "arguments": {
    "action": "notify",
    "body": "Deployment succeeded",
    "tag": "ops",
    "title": "Deploy complete",
    "type": "success"
  }
}

Curated action summaries live here. docs/INVENTORY.md is the current source of truth for complete parameters until a generated docs/MCP_SCHEMA.md is added.

CLI Reference

The CLI calls the same service methods as the MCP tool.

rapprise health [--json]
rapprise notify <body> [--tag TAG] [--title T] [--type info|success|warning|failure] [--json]
rapprise notify-url <urls> <body> [--title T] [--type info|success|warning|failure] [--json]

rapprise serve
rapprise serve mcp
rapprise mcp
rapprise doctor [--json]
rapprise setup check
rapprise setup repair
rapprise setup plugin-hook [--no-repair]

Configuration

Configuration loads from config.toml when present, then environment variables override those values. On startup, the binary also loads ~/.apprise/.env on hosts or /data/.env in containers without overriding already-set variables.

Upstream Variables

VariableRequiredDescription
APPRISE_URLnoApprise API server base URL. Defaults to http://localhost:8000.
APPRISE_TOKENonly for protected upstreamsOptional upstream Apprise API bearer token.

Runtime Variables

VariableDefaultDescription
APPRISE_MCP_HOST0.0.0.0HTTP MCP bind host.
APPRISE_MCP_PORT40050HTTP MCP bind port.
APPRISE_MCP_TOKENemptyStatic bearer token for HTTP MCP when not in loopback dev mode.
APPRISE_MCP_NO_AUTHfalseDisable HTTP MCP auth. Use only on loopback or behind a trusted gateway.
APPRISE_MCP_AUTH_MODEbearerSet to oauth for Google OAuth through lab-auth.
APPRISE_MCP_PUBLIC_URLemptyPublic URL for OAuth metadata and protected-resource discovery.
APPRISE_MCP_GOOGLE_CLIENT_IDemptyGoogle OAuth client ID.
APPRISE_MCP_GOOGLE_CLIENT_SECRETemptyGoogle OAuth client secret.
APPRISE_MCP_AUTH_ADMIN_EMAILemptyInitial/admin OAuth email.
APPRISE_MCP_ALLOWED_ORIGINSemptyAdditional CORS origins for HTTP MCP.
RUST_LOGinfoRust log filter. Stdio logs must stay off stdout.

Authentication

PolicyWhenEffect
Loopback developmentAPPRISE_MCP_HOST starts with 127. or APPRISE_MCP_NO_AUTH=trueNo HTTP auth layer is mounted. Use for local testing only.
Static bearerAPPRISE_MCP_TOKEN is set and the server is not loopback dev/mcp requires Authorization: Bearer <token>.
OAuthAPPRISE_MCP_AUTH_MODE=oauth plus Google OAuth settings/mcp uses lab-auth OAuth and scoped bearer tokens.
Stdiorapprise mcpThe local child-process boundary is the trust boundary.

MCP scopes are apprise:notify and apprise:admin. OAuth tokens are checked before MCP calls are dispatched.

Safety And Trust Model

  • MCP callers never provide APPRISE_TOKEN, OAuth secrets, static bearer tokens, passwords, SSH keys, or API keys as tool arguments.
  • Upstream Apprise credentials are loaded from env/config only.
  • notify is the preferred path because destinations are configured upstream under tags.
  • notify_url intentionally accepts Apprise URL schemas in MCP arguments for one-off sends. Treat those URLs as sensitive payloads and avoid using them when a tagged upstream destination is available.
  • Apprise API is the durable source of destination configuration; this server is a thin projection over that API.
  • HTTP mode should not be exposed beyond loopback without bearer or OAuth auth plus TLS from an upstream reverse proxy.

Architecture

MCP client / CLI
       |
       v
rapprise
       |
       +-- MCP shim: JSON args -> AppriseService -> structured result
       +-- CLI shim: argv -> AppriseService -> stdout
       |
       v
AppriseService
       |
       v
AppriseClient
       |
       v
Apprise API server
       |
       v
Notification backends
PathRole
src/app.rsBusiness service layer, response shaping, counters, and notification calls.
src/apprise.rsApprise API REST client.
src/mcp/RMCP tool, prompt, schema, routes, and auth checks.
src/cli.rsCLI parser, doctor/setup helpers, and output formatting.
src/config.rsEnv/config loading and defaults.
packages/apprise-rmcp/npm launcher and release-binary downloader.

The thin-shim rule is intentional: MCP and CLI parse inputs, call AppriseService, and return output. Credential loading, auth policy, and Apprise API behavior stay outside the MCP and CLI shims.

Distribution Contract

ArtifactFile(s)Must align with
Rust crate/binaryCargo.toml, Cargo.lockGit tag, release assets, CLI docs, install scripts.
npm launcherpackages/apprise-rmcp/package.json, bin/rapprise.js, lib/platform.js, scripts/install.jsGitHub Release tag and assets named rapprise-x86_64.tar.gz and rapprise-windows-x86_64.tar.gz.
GitHub Releases.github/workflows/*, scripts/install.sh, install.shPackage version, binary name, checksums, supported platforms.
Docker / ComposeDockerfile, docker-compose*.ymlExposed port 40050, healthcheck /health, env file contract.
MCP registryserver.jsonServer identity tv.tootie/apprise-mcp, env vars, transport URL, package version.
Pluginplugins/appriseRuntime command, setup hook, user config, bundled metadata.
DocsREADME.md, docs/INVENTORY.md, docs/QUICKSTART.mdCurrent binary name, default port, action list, and env names.

Release invariant: npm package version, Rust crate version, server.json.version, GitHub Release tag, release asset names, and README install examples should move together. README examples must use canonical repo and binary names, not older aliases.

Development

cargo fmt -- --check
cargo clippy --all-targets -- -D warnings
cargo test
cargo build --release
npm --prefix packages/apprise-rmcp run check

Verification

# Binary and CLI
cargo build --release
./target/release/rapprise --version
./target/release/rapprise health --json

# HTTP health
APPRISE_MCP_HOST=127.0.0.1 ./target/release/rapprise serve
curl -sf http://127.0.0.1:40050/health

# MCP tool call
curl -s -X POST http://127.0.0.1:40050/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"apprise","arguments":{"action":"health"}}}'

For live notification tests, configure at least one destination in the Apprise API server and call notify with its tag.

Deployment

Docker / Compose

cp .env.example .env
$EDITOR .env
docker compose up -d
curl -sf http://127.0.0.1:40050/health

The container stores app data under /data, normally mounted from ${HOME}/.apprise.

Reverse Proxy

Expose only /mcp and /health. Preserve Streamable HTTP headers, require TLS, and configure bearer or OAuth auth before exposing the server beyond loopback.

Plugin

claude plugin install plugins/apprise
rapprise setup check

Troubleshooting

SymptomLikely causeFix
401 from /mcpMissing or wrong bearer/OAuth token.Check APPRISE_MCP_TOKEN and client headers, or use loopback dev mode locally.
CLI health failsApprise API is not reachable.Check APPRISE_URL and the upstream Apprise API server.
notify sends nowhereNo upstream destinations match the tag.Check configured tags in Apprise API or omit tag to send to all configured services.
notify_url failsInvalid Apprise URL schema or blocked destination backend.Test the URL with Apprise API directly and prefer configured tags for repeated use.
stdio MCP JSON parse errorsLogs went to stdout.Keep protocol logs off stdout and lower RUST_LOG if needed.
npm launcher cannot find binaryRelease asset download failed or was skipped.Reinstall, check APPRISE_RMCP_VERSION, or build rapprise from source.

Related Servers

  • unifi-rmcp / rustifi - UniFi controller REST API bridge.
  • tailscale-rmcp / rustscale - Tailscale API bridge for devices, users, and tailnet operations.
  • unraid-rmcp / unrust - Unraid GraphQL bridge for NAS and server management.
  • gotify-rmcp - Gotify push notification bridge for sends, messages, apps, and clients.
  • arcane-rmcp - Arcane Docker management bridge for containers and related resources.
  • yarr-rmcp - Media-stack bridge for Sonarr, Radarr, Prowlarr, Plex, and related services.
  • ytdl-mcp - Media download and metadata workflow server.
  • synapse - Local Synapse workflow server for scout and flux actions.
  • cortex - Syslog and homelab log aggregation MCP server.
  • axon - RAG, crawl, scrape, extract, and semantic search project.
  • lab - Homelab control plane and Labby gateway project.
  • lumen - Local semantic code search MCP server.
  • nugs - Project/package management helper for local agent workflows.
  • agentcast - Agent transcript and activity publishing project.
  • soma - RMCP scaffold/runtime template for new provider-backed servers.

Documentation

Start here:

This README is curated. Generated or exhaustive catalogs should be refreshed in their own files and treated as the source of truth for current branch details.

License

MIT