Skip to main content
Glama
Zdendys79

mcp-server-syncthing

by Zdendys79

syncthing_get_folder_errors

Retrieve a list of errors for a specific Syncthing folder to diagnose synchronization issues.

Instructions

Get list of errors for a specific folder

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
folderYesFolder ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden. 'Get' implies a read, but there is no disclosure of return format, error severity/categories, pagination, or what happens when a folder has no errors.

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?

A single tight sentence with no filler, front-loading the action and resource. It is efficient but extremely terse, offering no elaboration to earn a 5.

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

Completeness3/5

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

For a one-parameter read tool with no output schema, the description is minimally adequate: it identifies the target and the payload type. It omits any indication of the error data's shape or when the result would be empty, leaving small but real gaps.

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 description coverage is 100%, so the single 'folder' parameter (Folder ID) is fully documented in the schema. The description only restates that the folder is specific, adding no meaning beyond the schema, which matches the baseline 3.

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?

States a specific verb (get), resource (errors), and scope (a specific folder). An agent can distinguish it from get_folder_status because it retrieves error listings rather than status, though the description does not explicitly name that sibling.

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?

No when-to-use or when-not-to-use guidance is given, and no alternative sibling is referenced. The agent must infer that this is the diagnostics tool versus get_folder_status or get_status on its own.

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