Skip to main content
Glama
rollecode

Audiobookshelf MCP server

by rollecode

create_validate_cron

Idempotent

Validate a cron expression using Audiobookshelf's API. Send the required payload to verify a cron schedule's validity and receive the validation result.

Instructions

Create or act on api validate-cron.

POST /api/validate-cron

Args: body: Request payload. Read the matching GET or the /schema endpoint first to see the fields this resource expects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.3/5.0
Behavior2/5

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

Annotations provide idempotentHint=true, readOnlyHint=false, destructiveHint=false, but the description adds no behavioral context beyond the vague phrase 'Create or act on.' It does not state what side effects occur, what is validated, or what response to expect. No contradiction with annotations, but the description's contribution is minimal.

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

Conciseness3/5

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

The description is short and structured with endpoint and Args sections, but the opening sentence is a tautological restatement of the resource and the endpoint line duplicates it. It is concise yet contains filler rather than substantive content.

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 an opaque request body and output schema, the description leaves important context missing: what validate-cron does, what the body must contain, and when to invoke it. The pointer to /schema is the only compensating element, but it is not enough for an agent to select and invoke this tool 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?

The schema only describes body as an open object with additionalProperties true, and schema coverage is 0%. The description adds that body is the request payload and advises reading the matching GET or /schema endpoint to discover expected fields, which is a useful discovery instruction. However, it never states the actual body contents, and the referenced 'matching GET' is not present in the sibling list, so semantics remain under-specified.

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

Purpose2/5

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

The description only says 'Create or act on api validate-cron' and repeats the POST endpoint. 'Create or act on' is a generic wrapper, not a specific action, and 'validate-cron' is never explained, so an agent cannot tell what this tool actually accomplishes. It does not distinguish itself from the many other create_* sibling tools.

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?

There is no guidance about when to use this tool versus alternatives. 'Read the matching GET or the /schema endpoint first' is a preparation step, not a selection rule, and no sibling or exclusion condition is mentioned.

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