Zona MCP
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Zona MCPSend a high-severity alert: database backup failed"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Zona MCP
An MCP server that sends alerts to the Zona inbox from an AI CLI. The source token is read locally and never printed.
Tools
Tool | Purpose |
| Whether a token is configured. Never returns the token. |
| Short connectivity check. |
| Send an alert. Optional |
Related MCP server: ntfy-mcp
Requirements
Node.js 20+ (
fetch,FormData, andcrypto.randomUUID).
Install
cd mcp
npm ciConfiguration
Grok
[mcp_servers.zona]
command = "node"
args = ["/absolute/path/to/mcp/server.mjs"]
enabled = trueOn Windows, set MSYS = "noglob" in [mcp_servers.zona.env] if you use MSYS.
Claude / Cursor / other stdio hosts
{
"mcpServers": {
"zona": {
"command": "node",
"args": ["/absolute/path/to/mcp/server.mjs"]
}
}
}Restart the CLI after changing MCP config.
Token
In the Zona app, open Sources, create a source (or a new key), copy the
zona_live_... token once, and save it as a single line in:
~/.zona/tokenOn Windows that is %USERPROFILE%\.zona\token. Treat it like a password. You
can also set ZONA_SOURCE_TOKEN.
HTTP (no MCP)
POST https://gerncrjtrdjtjvybvseb.supabase.co/functions/v1/notify
Authorization: Bearer zona_live_YOUR_SOURCE_TOKEN
Idempotency-Key: unique-event-id
Content-Type: application/json{
"title": "Build complete",
"body": "The release finished.",
"category": "build",
"severity": "medium"
}Pictures use multipart/form-data and repeat the attachment part once per
file (max five).
Full sender guide:
Send alerts to Zona.
Agent skill
SKILL.md in this folder is the prompt for AI CLIs (/zona). Copy it into the
host's skills directory.
License
Available Tools
3 toolszona_notifySend a Zona notificationA
Send an inbox notification to the owner's Zona app. Title 1-120 chars, body 1-2000. Optional category, severity (low|medium|high|critical), up to five PNG/JPEG/WebP attachment paths, and an idempotency key. Do not put secrets in title, body, or data.
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | ||
| title | Yes | ||
| category | No | ||
| severity | No | ||
| attachments | No | ||
| idempotencyKey | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description carries the full transparency burden. It discloses that the payload is delivered externally to the owner's app and adds a practical security warning ('Do not put secrets in title, body, or data'), which meaningfully flags a transmission/exposure risk. However, it says nothing about failure behavior, delivery guarantees, the effect of the idempotency key, or what happens on invalid attachment paths.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, all earning their place: the core action is front-loaded, the parameter constraints condense the schema into a readable line, and the secrets warning is a tight closing note. No redundancy with the input schema beyond the readable restatement of limits that serves comprehension.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The payload spec is fully covered for six parameters with two required, but the context is under-specified elsewhere: there is no output schema and no statement about the return value, error conditions, or whether the call is asynchronous. The description never explains what the idempotency key actually guarantees — a real gap for an agent deciding whether to retry a failed send.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate, and it does most of the job: it states the title/body character limits, enumerates the severity enum values, and adds non-schema information that attachment paths must be PNG/JPEG/WebP images and at most five. It falls slightly short by only naming 'category' and 'idempotency key' without explaining their purpose or behavior.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a precise verb-resource pair — 'Send an inbox notification to the owner's Zona app' — making the action, recipient, and delivery channel unambiguous. This clearly distinguishes it from sibling tools zona_status and zona_ping, which are inherently read/check operations rather than mutations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied rather than stated: the description tells the agent what the tool does, so the appropriate scenario (deliver a notification to the owner) can be inferred, but it never says explicitly when to choose this over siblings or what conditions would disqualify it. There is no when-not clause or explicit routing to zona_status/zona_ping.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
zona_pingPing ZonaB
Send a short test notification to confirm the local token and /notify path work.
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | ||
| title | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full disclosure burden. It explains that this is only a short test/confirmation action and names the token and path checked, which gives useful context. It does not disclose whether a real notification is exposed to users or what response to expect, leaving minor ambiguity.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence that is front-loaded with purpose and includes no filler. Every phrase adds information about what the tool does and why the agent would call it.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two parameter ping tool, the description is close to sufficient and can succeed with reasonable inference. But with no output schema and no explanation of parameter semantics or success/error behavior, an agent may not know how to interpret the invocation results.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must carry the semantic load, but it only says 'short test notification' and gives no explanation of `body` or `title`. The agent must infer the meaning of the two self documenting string parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('send ... test notification') and a clear purpose ('confirm the local token and /notify path work'). It implicitly distinguishes this from the sibling zona_notify (the real notification tool), though it doesn't name the alternative explicitly.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The purpose clause 'to confirm the local token and /notify path work' provides a concrete trigger for use. However, it does not state when NOT to use the tool or explicitly compare against zona_status/zona_notify, so the guidance is helpful but not explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
zona_statusZona MCP statusA
Check that the local Zona source-token file exists. Never returns the token.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the surface description carries the behavioral disclosure burden. It adds a useful safety guarantee: 'Never returns the token,' which tells the agent that handling the sensitive credential data will not leak. It does not state what happens if the file is missing or whether the tool raises errors, but the explicit privacy behavior is a strong positive signal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences with no filler. It front-loads the purpose and then adds the safety caveat. Every word contributes to actionable understanding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter status check, the description covers the primary behavior and an important privacy boundary. It could mention the return value or what constitutes a failure, but since the tool is simple and the description states the exact check, the missing output details are a minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters and schema description coverage is 100%, so the description is not required to explain parameter semantics. The baseline of 4 is appropriate because there is nothing about arguments that the agent could misunderstand.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear action ('Check') and a specific resource ('local Zona source-token file exists'), so an agent can understand what the tool does without opening the schema. It does not explicitly contrast itself with sibling tools, but the resource and action are specific enough to differentiate it from zona_ping and zona_notify.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no explicit guidance on when to use this tool instead of the siblings. There are no conditions, prerequisites, or exclusions, so the agent has to infer usage solely from the tool name and check-like phrasing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
3 tool updates
v1.0.0- First observed
zona_notify - First observed
zona_ping - First observed
zona_status
TDQS
Scored across 3 tools
zona_status clearly checks token-file existence, while zona_notify sends a full notification and zona_ping sends a test notification. The only minor overlap is between notify and ping, but the test nature of ping is clear enough to avoid real ambiguity.
All tools use a consistent 'zona_' prefix followed by a short, recognizable action word: status, notify, ping. The naming pattern is uniform and predictable.
Three tools is small but appropriate for a narrow notification-focused server. It covers status validation, actual sending, and testing without unnecessary bloat.
The domain is simple: verify the token, send a notification, and test connectivity. These three operations cover the essential workflow, though a tool to validate token permissions or list recent notifications could be a minor addition.
Maintenance
Related MCP Connectors
Let your AI agent notify you by email, Slack, Discord, or webhook. One tool: send_notification.
Build and send email, SMS, and push straight from your AI agent.
Create, test, publish, and manage Dreamlit notification workflows from AI clients.
Command your AI agents by voice: PTT rooms, channels, E2EE DMs, agent email, private recall.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables AI assistants to send push notifications through the kweenkl service. Allows users to receive contextual notifications from their AI when tasks are complete or important events occur.16 npmMIT
- AlicenseNot gradedqualityBmaintenanceEnables sending push notifications via ntfy with a single tool, allowing Claude agents to send notifications directly without shell access.MIT

FastAlert MCP Serverofficial
AlicenseNot gradedqualityDmaintenanceEnables AI agents to list FastAlert channels and send rich notifications via the FastAlert API.42 npm3MIT- FlicenseAqualityBmaintenanceEnables AI to send push notifications to your phone via a configurable gateway. It is a thin wrapper that posts to an Apprise push gateway.1-