Skip to main content
Glama
Ringosystems

Homey-Wan-Kenobi-MCP

by Ringosystems

Send Notification

create_notification
Idempotent

Send a notification message to the Homey timeline, visible to all household members in the Homey app.

Instructions

Send a notification to the Homey timeline. Visible in the Homey app for all household members.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
excerptYesNotification message text

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.1.1

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate a non-read-only, non-destructive, idempotent operation. The description adds useful behavioral context: the notification appears on the Homey timeline and is visible to all household members. There is no contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, two sentences long, and directly states the purpose and audience. Every word adds value without unnecessary elaboration.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple one-parameter tool, the description fully covers what the tool does, where the notification is delivered, and who can see it. No output schema is needed for this basic send operation, and the information provided is sufficient for an agent to invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% for the single 'excerpt' parameter, and the schema description already clearly explains its purpose. The tool description does not add any additional parameter semantics, but this is not necessary given the schema's clarity.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('send a notification') and the specific target ('to the Homey timeline'). It effectively distinguishes itself from the sibling tool 'list_notifications' by describing a create/write action rather than a read/list action.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context: it sends a notification visible to all household members, which helps the agent decide when to use this tool. It does not explicitly mention alternatives or exclusions, but the context alone is sufficiently clear for a simple notification send.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.