Skip to main content
Glama

start_container

Start an existing MikroTik RouterOS container by name or tag, previewing changes before confirming the guarded write.

Instructions

Start a container by name or tag (/container/start).

WRITE tool, guarded: blocked entirely unless the server is running with MIKROTIK_ALLOW_WRITE=true. Call with confirm=False (the default) to get a before/after preview without changing anything; call again with confirm=True to actually apply it. Errors clearly (without creating anything) if container doesn't match any /container row's name or tag on the device - it is never created.

The after.status in the preview is the status RouterOS sets immediately ("starting"), not a guaranteed final state - the container transitions to "running" asynchronously; use containers again afterward to see the settled status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
confirmNo
containerYes
device_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.11.0

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations, the description carries the full burden and does so thoroughly: it discloses the MIKROTIK_ALLOW_WRITE=true guard, the non-destructive preview default, the error-without-creating behavior on no match, and the asynchronous status transition where 'starting' is not a settled state.

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?

Front-loads the action and path, then layers guard, preview/apply, error, and async caveats in a logical order. Slightly long with dense parentheticals, but every sentence adds decision-relevant information rather than filler.

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 guarded write tool with an output schema present, it supplies everything an agent needs: safety guard, confirm semantics, failure mode, and interpretation of the returned after.status. Nothing material is missing.

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?

Schema coverage is 0%, so the description must compensate and largely does: it clarifies that `container` matches a `name` or `tag`, and that `confirm` defaults to False for preview vs True to apply. Only `device_name` is left unexplained, which is minor.

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?

States a specific verb ('Start') and resource ('container') and even cites the underlying RouterOS path (`/container/start`). It is trivially distinguishable from the sibling stop_container and the read-only containers tool.

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?

Explains the two-phase call pattern (confirm=False preview then confirm=True apply) and when each applies. It does not explicitly route against alternatives like stop_container or containers, but the context is clear enough to invoke correctly.

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