Skip to main content
Glama
takltc

markdown-new-mcp

by takltc

convert_url_to_markdown

Read-only

Convert a remote file URL into clean Markdown text. Handles PDF, DOCX, XLSX, images, and 20+ formats, turning documents and files into readable Markdown for LLMs and workflows.

Instructions

Convert a remote file URL to clean Markdown text. Supports PDF, DOCX, XLSX, images, and 20+ formats.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesHTTP or HTTPS URL of the remote file to convert into Markdown.
api_keyNoOptional markdown.new API key. Leave empty to use MARKDOWN_NEW_API_KEY from the server environment.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.4

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, covering safety and network access. The description adds supported file formats (PDF, DOCX, XLSX, images, 20+), which is useful context beyond annotations, but says nothing about output characteristics, size limits, or error behavior.

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 tight sentences with no wasted words. The core action and format support are both front-loaded.

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 two-parameter, read-only conversion tool with full schema coverage and annotations, the description covers purpose and format support adequately. It could be more complete by hinting at output size or distinguishing itself from siblings, but nothing critical is missing.

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 (url, api_key) are fully documented in the schema. The description adds no parameter-level detail beyond what the schema already provides, so baseline 3 applies.

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 (convert) and resource (remote file URL to Markdown), and lists supported formats. However, it does not explicitly differentiate itself from the sibling convert_file_to_markdown, forcing the agent to infer that 'remote URL' means this tool versus a local file.

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

Usage Guidelines3/5

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

The mention of 'remote file URL' implies usage for URL-based conversion, but there is no explicit guidance on when to choose this over convert_file_to_markdown or convert_url_to_json, nor any exclusions or prerequisites stated.

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