Skip to main content
Glama
murzirius

VPS-Guardian-MCP

by murzirius

list_systemd_timers

Audit active and pending systemd timers, returning details on next execution, countdown, and target services.

Instructions

Audit active and pending systemd timers via 'systemctl list-timers'.

Returns: JSON string with timer unit names, next execution time, countdown, and target services.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.8.1

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden and it does well by naming the exact systemctl command and stating the return payload fields. It implies a read-only audit operation, though it never explicitly says it makes no system changes or whether elevated permissions are needed.

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 two compact sentences: the first states the action and command, the second enumerates the return values. There is no filler or redundant detail, making it easy to scan.

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

Completeness4/5

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

For a zero-argument read-only auditing tool with an output schema, the description covers the command, scope, and return fields. It could add a note about permissions or how it relates to cron-job auditing, but those are not critical for invoking the tool correctly.

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

Parameters4/5

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

The tool accepts zero parameters, so there is no parameter semantics to clarify; the baseline of 4 applies. The description's mention of the command and output is sufficient for a no-argument tool.

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 names a specific verb and resource: 'Audit active and pending systemd timers'. It also identifies the underlying command 'systemctl list-timers', making the tool's function unmistakable and naturally distinguishing it from sibling tools like list_cron_jobs.

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 on when to prefer this tool over alternatives such as list_cron_jobs or get_failed_systemd_units. The description states what the tool does but not when it should be selected or avoided, leaving that decision entirely to the agent.

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