Skip to main content
Glama
mikesplore
by mikesplore

start_service

Start a systemd service on the host system when it is down or explicitly requested. Use after checking status with get_service_status.

Instructions

Start a systemd service. Use get_service_status first when the user asks if it is running; only start when they ask to start it or it is down and they want it fixed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
scopeYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=false, idempotentHint=false, and destructiveHint=false, covering the basic safety profile. The description adds a usage guardrail but does not disclose side effects, failure conditions, permissions, or behavior when the service is already running. This is acceptable given annotations, but not rich.

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 concise sentences, front-loaded with the core purpose and followed by precise usage guidance. Every sentence adds value and there is no filler.

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 2-parameter tool with no output schema and 0% schema description coverage, the description must carry more weight. It explains when to call it but leaves parameter semantics and operational behavior undocumented, so an agent cannot fully invoke it correctly without external knowledge.

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

Parameters1/5

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

Schema description coverage is 0% for the two required string parameters, name and scope. The description provides no explanation of what values these parameters expect, what scope means, or how they interact with systemd. The description fails to compensate for the schema gaps.

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 states a specific verb and resource: 'Start a systemd service.' This clearly distinguishes it from sibling tools like stop_service and restart_service, and the guardrail about get_service_status further separates it from status checks.

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

Usage Guidelines5/5

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

The description gives explicit when-to-use and when-not-to-use guidance: check get_service_status first if the user asks whether it is running, and start only when the user asks to start it or it is down and they want it fixed. This directly names the alternative and the conditions that select this tool.

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