Convert To It
Server Details
Check which file formats convert to which, and get links that open the converter.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: checking a specific conversion, listing all targets for a format, and searching supported formats. There is no functional overlap or ambiguity between them.
All tool names follow a consistent verb_noun snake_case pattern: check_conversion, list_conversion_targets, and search_formats. The naming style is uniform and predictable.
Three tools is a well-scoped size for an informational conversion helper. Each tool covers a distinct, necessary operation and none feel redundant or missing.
The tool set fully covers the stated domain: checking conversion feasibility, enumerating possible targets, and searching supported formats. Since the conversion itself runs in the user's browser, no additional conversion-execution tool is needed.
Available Tools
3 toolscheck_conversionCheck a conversionARead-onlyIdempotentInspect
Check whether Convert To It can convert a file from one format to another and in how many steps, and get a link that opens the converter with both formats chosen. Formats are file extensions such as "heic" or "jpg". The conversion itself runs in the user's browser.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Extension to convert to, e.g. "jpg". | |
| from | Yes | Extension of the file to convert, e.g. "heic". |
Output Schema
| Name | Required | Description |
|---|---|---|
| to | Yes | |
| url | No | Opens the converter with both formats chosen; the user then picks the file. |
| from | Yes | |
| steps | No | Conversions on the most direct route; 1 is direct. |
| reason | No | Why the conversion isn't possible. |
| possible | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds valuable behavioral context: the conversion runs in the user's browser (not server-side), and the tool returns a link that opens the converter with both formats chosen. This goes beyond what annotations provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences with no waste. The core purpose is front-loaded, the format clarification is useful, and the browser-side note is a meaningful behavioral detail. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is complete for a read-only, idempotent check tool with a clear output schema. It explains what the tool does, what the parameters mean, and the key behavioral trait (browser-side conversion). The only minor gap is not describing the output schema's structure, but the output schema exists and the description mentions the link and step count.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so both parameters (from, to) are already documented with examples. The description adds the context that formats are file extensions like 'heic' or 'jpg', which reinforces but doesn't significantly extend the schema. Baseline 3 is appropriate since the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: checking whether a conversion is possible, how many steps it takes, and getting a link with formats pre-selected. It uses a specific verb ('check') and resource ('Convert To It'), and the mention of 'in how many steps' distinguishes it from a simple yes/no check. The sibling tools (list_conversion_targets, search_formats) are clearly different in scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool: when you need to verify a conversion between two specific formats and obtain a link. It doesn't explicitly state when not to use it or name alternatives, but the context signals and sibling names make the use case clear. The phrase 'Check whether Convert To It can convert...' gives a clear context for use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_conversion_targetsList conversion targetsARead-onlyIdempotentInspect
List every format Convert To It can convert a given format to, grouped by the number of conversion steps (1 is direct), most direct first.
| Name | Required | Description | Default |
|---|---|---|---|
| from | Yes | Extension of the file to convert, e.g. "png". |
Output Schema
| Name | Required | Description |
|---|---|---|
| from | Yes | |
| count | Yes | |
| url_template | Yes | Replace {extension} with a target to open that conversion. |
| targets_by_steps | Yes | Step count → output extensions, cheapest route first. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds the behavioral detail that results are grouped by number of steps and sorted with direct conversions first, which is useful. However, it does not disclose any edge cases, error behavior, or limitations beyond what the annotations imply. Since annotations carry the safety burden, a 3 is appropriate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, well-formed sentence that is front-loaded with the core action and then adds specific details about grouping and ordering. No wasted words; it is concise and efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only listing tool with one parameter and an output schema (not shown but present), the description is complete. It explains the grouping and sorting of results, and the output schema covers return values. There is no missing information an agent needs to call this tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents the 'from' parameter with a clear example ('png') and its meaning as an extension. The description does not add additional semantics about the parameter, relying on the schema. With 100% schema description coverage, the baseline is 3, and the description adds nothing extra for parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
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 specific resource ('every format Convert To It can convert a given format to'), and adds detail about grouping by conversion steps and ordering. This clearly distinguishes it from siblings like check_conversion (which likely checks a specific conversion) and search_formats (which likely searches formats by name). The purpose is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage: given a source format, list all possible targets. However, it does not explicitly discuss when to use this tool over the siblings or when not to use it. The guidance is implied rather than stated, so it meets the 'implied usage' level.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_formatsSearch formatsARead-onlyIdempotentInspect
Search the file formats Convert To It supports by extension, name, MIME type or category, and see whether each can be read (converted from) or written (converted to).
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | Extension, name or MIME type, e.g. "webp" or "photoshop". Omit to list everything. | |
| can_read | No | true: only formats that can be converted from. | |
| category | No | Comma-separated categories, e.g. "image" or "audio,video". | |
| can_write | No | true: only formats that can be converted to. |
Output Schema
| Name | Required | Description |
|---|---|---|
| total | Yes | Matches before the limit. |
| formats | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds the behavioral detail that results indicate read/write capability, which is useful. However, it doesn't disclose details like pagination behavior, default limit, or how the 'limit' parameter interacts with results, though the schema covers the limit parameter.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that front-loads the main action and includes the key differentiator (read/write support). It is concise and every part adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has an output schema, so return values are documented. The description covers the search criteria and the read/write capability. It could be more complete by explicitly mentioning the 'limit' parameter's effect or the default behavior when query is omitted, but the schema covers those. Overall, it's adequate for an agent to use the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 80%, so most parameters are already documented in the schema. The description adds the overall search criteria (extension, name, MIME type, category) and the read/write capability filter, which maps to can_read and can_write. However, it doesn't add much beyond what the schema already provides for individual parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: searching file formats by extension, name, MIME type, or category, and determining read/write support. It uses a specific verb ('search') and resource ('file formats'), and the mention of read/write capability distinguishes it from a simple format list.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool: when you need to search formats by various criteria and see read/write support. It doesn't explicitly name alternatives like check_conversion or list_conversion_targets, but the context signals show siblings, and the description's focus on search and read/write capability provides clear context. It lacks explicit 'when not to use' guidance.
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.
3 tool updates
- First observed
check_conversion - First observed
list_conversion_targets - First observed
search_formats
Related MCP Connectors
Convert files between 400+ image, video, audio, document, ebook, archive and font formats.
Convert between 200+ format pairs: JSON, CSV, XML, YAML, PDF, Excel, DOCX and more.
Convert files between 44 formats: documents, spreadsheets, images, ebooks, email and subtitles.
Convert files between 110+ document, image, audio, video, archive and ebook formats from AI agents.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables file conversion between 690+ formats (image, video, audio, document, data, font, ebook, archive) using an MCP server, with no API key or signup required.210 npm6MIT
- AlicenseAqualityCmaintenanceEnables agents to convert local files across 162 input formats and 3649 proven conversions, using two tools to list supported formats and convert files with clear error reporting.2MIT
- AlicenseAqualityCmaintenanceFile conversion for AI agents: office docs to PDF, PDF to Word, document interchange (Markdown/HTML/EPUB/LaTeX), and audio/video transcodes via the hushvert hosted API. Tools: convert_file, convert_poll, list_formats, check_usage.437 npm1MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to discover 180+ free in-browser file tools and return deep-link URLs without uploading any files.33 npmMIT
Glama MCP Gateway
Add one secure layer between your agents and this server.