Skip to main content
Glama

Server Details

Convert documents and web pages to clean Markdown: PDF, DOCX, XLSX, EPUB, scanned files, any URL.

Ownership verified
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
Robinhill85/file2markdown-mcp
GitHub Stars
0

Available Tools

4 tools
convert_base64AInspect

Convert base64-encoded file contents to Markdown.

filename is required and drives format detection (e.g. "report.docx").
Intended for programmatic MCP clients; for anything with a URL, prefer
convert_url.
ParametersJSON Schema
NameRequiredDescriptionDefault
filenameYes
content_base64Yes

TDQS

A4.1/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral burden. It does disclose that the output is Markdown and that filename drives format detection, which is useful. However, it does not mention constraints like size limits, invalid base64 handling, or whether any external call is involved. The description is minimally acceptable but leaves gaps.

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 concise: three short sentences with no filler. The main purpose is front-loaded, followed by essential parameter context and a routing note. Every sentence earns its place.

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 simple conversion tool, the description covers the main purpose, key parameter, and an alternative sibling. However, it omits guidance about which formats are supported, despite the existence of list_supported_formats as a sibling. It also does not mention error cases or output structure beyond 'Markdown'. Adequate but with noticeable 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 0%, so the description must compensate. It does explain filename semantics with an example ('report.docx') and notes that it drives format detection. content_base64 is only implied by the tool name and overall description, and there is no detail on the expected base64 format (e.g., raw vs data URI). This is partial compensation, not complete.

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 clearly states the action: converting base64-encoded file contents into Markdown. It also differentiates itself from the sibling tool convert_url by explicitly noting that URLs should use the other tool. This gives an agent a precise, non-ambiguous understanding of what this tool does.

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 provides explicit usage guidance: it is intended for programmatic MCP clients, and it explicitly says to prefer convert_url for anything with a URL. It also highlights that filename is required and drives format detection, which is essential for correct usage. This is strong routing information.

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

convert_urlAInspect

Fetch a URL (web page, PDF, Office doc, and more) and convert it to Markdown.

Works on publicly accessible URLs. Web pages are converted from their
served HTML; JavaScript-rendered content may be incomplete. Optional
filename_hint (e.g. "report.pdf") helps format detection when the URL
has no file extension.
ParametersJSON Schema
NameRequiredDescriptionDefault
urlYes
filename_hintNo

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It discloses the conversion behavior, the limitation on public URLs, and the JS-rendering caveat, plus how filename_hint influences format detection. It does not cover failure modes or output format details, but for a read-oriented conversion tool this is a reasonable level of transparency.

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 concise, front-loaded with the main purpose, and each sentence adds meaningful information without redundancy. It covers scope, constraints, a behavioral caveat, and parameter guidance in a compact structure.

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?

Given only 2 parameters and no output schema, the description covers the essential selection criteria and usage constraints. It does not specify the exact return format beyond 'Markdown' or discuss error handling, but the sibling list_supported_formats likely covers format details, so the description is adequate for an agent to invoke it 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 input schema has no parameter descriptions (0% coverage), so the description must compensate. It explains the purpose of filename_hint with a concrete example and clarifies the URL must be publicly accessible. The url parameter is less explicitly detailed, but the context makes its semantics clear.

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 uses a specific verb ('Fetch') and resource ('URL') and states the conversion output ('Markdown'). It also lists supported input types (web page, PDF, Office doc) and distinguishes itself from siblings like convert_base64 by focusing on fetching URLs rather than converting base64 content.

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?

It provides clear context for when to use the tool: requires publicly accessible URLs and warns that JavaScript-rendered content may be incomplete. However, it does not explicitly name alternatives or state 'use this instead of convert_base64', though the URL-focused scope makes the intended use obvious.

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

list_supported_formatsAInspect

List supported input formats, per-tier limits, and which features need Pro.

Single source of truth — do not claim capabilities beyond what this returns.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral burden. It discloses that the tool is authoritative and exhaustive ('Single source of truth') and warns against extrapolating beyond its output. The verb 'List' also implies a read-only operation, though it does not explicitly confirm absence of side effects.

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 concise sentences with no filler. The first sentence states what the tool returns; the second adds an important authority constraint. Every word contributes value.

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?

The description covers what the response contains (formats, tier limits, Pro features) and its authoritative nature. With no output schema, it could go slightly further in describing the response shape or grouping, but for a zero-parameter reference tool this is a minor gap.

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 has zero parameters and schema coverage is 100%, so there is nothing for the description to add about parameters. Per the calibration rule, this earns the zero-parameter baseline of 4.

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 uses a specific verb ('List') and a clear resource ('supported input formats'), and further specifies the content categories: per-tier limits and Pro feature requirements. This distinguishes it from sibling conversion and usage tools without requiring schema inspection.

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 'Single source of truth — do not claim capabilities beyond what this returns' sentence provides clear context: use this tool as the authoritative reference before asserting supported capabilities. It does not explicitly name sibling tools or spell out when not to use it, so it falls just short of full exclusionary guidance.

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

usage_statusAInspect

Check your tier and remaining conversions before burning a call.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.2/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It does convey that this is a read-only status check and implies the check itself does not consume a conversion, but it does not explicitly state side effects, whether the call is free, or how it behaves when no conversions remain. Adequate but not fully transparent.

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?

A single sentence, very concise, with the core action ('check tier and remaining conversions') front-loaded and the usage context appended. 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 zero-parameter, no-output-schema tool, the description covers what the tool reports (tier and remaining conversions) and when to call it. It does not specify output structure or numeric formats, but that is likely unnecessary for invoking the tool successfully.

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 has zero parameters and the schema is empty, so there are no parameter details to add. The description correctly focuses on behavior rather than redundant parameter information.

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 ('check') and resource ('your tier and remaining conversions'), and the phrase 'before burning a call' clarifies its role as a preflight status check. It is clearly distinct from the sibling conversion tools, which perform different operations.

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 explicitly indicates when to use the tool: before consuming a call/conversion. It does not name alternatives or exclusion conditions, but the sibling tools are unrelated enough that no further routing is needed.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 4 tool updates
    • First observedconvert_base64
    • First observedconvert_url
    • First observedlist_supported_formats
    • First observedusage_status

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool has a distinct role: the two conversion paths (base64 vs URL) are clearly differentiated by input source and usage guidance, and the two informational tools (format support, usage quota) do not overlap.

Naming Consistency4/5

convert_base64, convert_url, and list_supported_formats follow a consistent verb_noun pattern. usage_status is a minor resource-style exception but remains readable and does not create real confusion.

Tool Count5/5

Four tools are well-scoped for this service: two conversion entry points plus two supporting tools for format discovery and usage awareness. No redundant or filler tools are present.

Completeness5/5

The surface covers the full workflow for a stateless conversion service: ingest via base64 or URL, discover supported formats and limits, and check quota before conversion. There are no obvious dead ends or missing core operations.