Skip to main content
Glama
Narashiman-K

Suprasūtā Markdown Notes

by Narashiman-K

convert_folder_to_markdown

Convert multiple local documents (PDF, Office, images, audio) to Markdown in one operation, then get a summary of successes. Use when pointing to a set of files.

Instructions

Convert several documents at once and return a summary of what succeeded. Use when the user points at a set of files rather than one.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathsYesAbsolute paths of the files to convert.
output_directoryYesAbsolute directory to write each .md file into.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

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

There are no annotations, so the description carries the behavioral burden. It does disclose that the tool returns a summary of what succeeded, implying partial failures are possible. However, it does not mention overwrite behavior, directory creation, or what happens with unsupported files, which would be useful for a write operation.

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?

Two short sentences deliver the core behavior and usage condition with no filler. The key distinguishing fact (batch conversion) is front-loaded, and every word earns its place.

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 simple two-parameter tool with fully described schema and no nested objects or output schema, the description is largely sufficient. It covers what the tool does, when to use it, and the nature of the return value, although details like output naming or conflict handling are absent.

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 both parameters ('paths' and 'output_directory') are already well documented. The description adds little parameter-level meaning beyond the schema, which is acceptable because the schema does the heavy lifting.

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 ('convert'), a resource scope ('several documents at once'), and an outcome (returns a summary of what succeeded). It also distinguishes itself from the single-file sibling tool by explicitly framing this as the batch variant.

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?

The description gives an explicit trigger: use when the user points at a set of files rather than one. It provides a clear when-to-use signal and implicitly excludes single-file use, though it does not name the alternative tool directly.

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