Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

get_notifications_by_id_test

Read-onlyIdempotent

Send a test notification for a specified notification ID to verify its configuration.

Instructions

Send a test notification.

GET /api/notifications/{id}/test

Args: id: Path parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/5.0
Behavior1/5

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

The description says 'Send a test notification,' which implies a side-effecting action, while annotations declare readOnlyHint=true. This is a direct contradiction because sending a notification modifies the environment, conflicting with read-only semantics. The description also adds no behavioral context beyond this.

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

Conciseness4/5

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

The description is compact and front-loaded with the core action, followed by the endpoint and parameter. It avoids fluff, though the Args section partially duplicates schema information. Overall, it earns its place.

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

Completeness2/5

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

For a tool with one parameter and an output schema, the description is incomplete: it lacks usage guidance, behavioral detail, and clear relation to sibling tools. The contradiction between the description and annotations further reduces its utility for an agent deciding whether and how to call it.

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 0%, so the description must compensate. It identifies `id` as a path parameter and the endpoint path indicates it is the notification ID. This adds minimal but useful meaning beyond the raw schema, though it doesn't explain format, accepted values, or how to obtain a valid id.

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

Purpose4/5

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

The description states a clear action and resource: 'Send a test notification' for a given notification id via the GET /api/notifications/{id}/test path. It is not a tautology and is understandable, though it does not differentiate itself from sibling tools like list_notifications_test or create_notifications.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool instead of alternatives. No mention of prerequisites, triggering conditions, or exclusions. The only context is the endpoint path, which does not convey usage.

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

Deploy Server

Other Tools