file-conversion

file-conversion is a skill for Claude Code from aadilr/changethisfile-mcp. It costs 93 tokens per session (760 once invoked), scanned A, original, MIT.

A file-conversion tool for changing files between formats, such as PDF to Word, HEIC images to JPG, or CSV data to JSON. It supports routes across documents, images, video, audio, data, ebooks, fonts, and archives.

In plain words
What is it for?
Use it to convert local or remote files into a needed format through the available MCP tools or bundled script.
Why use it?
It removes the need to find and operate a separate converter for each file type. Conversions run on a server, and uploaded files are deleted within 24 hours.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the changethisfile plugin — 1 skill, 1 MCP server shipped together

Good fit Use it to convert local or remote files into a needed format through the available MCP tools or bundled script.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aadilr/changethisfile-mcp/file-conversion
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add aadilr/changethisfile-mcp --skill file-conversion
Clone the repo
git clone --depth 1 https://github.com/aadilr/changethisfile-mcp

Made for: Claude Code.

Or install changethisfile, the plugin that ships this one along with the rest of its 1 skill, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for file-conversion

README.md
[![agentmods](https://agentmods.dev/badge/skills/aadilr/changethisfile-mcp/file-conversion/github.svg)](https://agentmods.dev/skills/aadilr/changethisfile-mcp/file-conversion)
Your own site
<a href="https://agentmods.dev/skills/aadilr/changethisfile-mcp/file-conversion"><img src="https://agentmods.dev/badge/skills/aadilr/changethisfile-mcp/file-conversion/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for file-conversion

Your own site · 80×15
<a href="https://agentmods.dev/skills/aadilr/changethisfile-mcp/file-conversion"><img src="https://agentmods.dev/badge/skills/aadilr/changethisfile-mcp/file-conversion.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 93 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 760 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00093 $0.00760
Opus 5 $0.00046 $0.00380
Sonnet 5 $0.00019 $0.00152
Haiku 4.5 $0.00009 $0.00076

Measured 10d ago against content hash bca6324778bb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

file-conversion scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/convert.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

3. **Remote file (you have a URL, not a local file)** — skip the download/re-upload; one curl does it:
skills/file-conversion/SKILL.md · 56 lines

How it starts

The opening of the file, as written. The whole thing — 56 lines — stays where its author put it; the contents beside it link to each section on GitHub.

File Conversion (ChangeThisFile)

Convert files across 1,000+ supported routes using ChangeThisFile. Anonymous conversion is temporarily available in compatibility mode; verified developer keys share quota with REST API usage. Conversions run server-side (FFmpeg, LibreOffice, Calibre, 7-Zip, sharp, Ghostscript); files are deleted within 24 hours.

Decision order

  1. If ChangeThisFile MCP tools are available (changethisfile:convert_file, changethisfile:list_conversions) — use them directly. convert_file takes source_url OR base64_content + source_format, plus target_format, and returns a temporary download URL.
  2. Otherwise, use the bundled script (requires network access to changethisfile.com):
scripts/convert.sh <input-file> <target-format> [output-file]
# e.g. scripts/convert.sh report.docx pdf
# prints the output file path on success

The script path is relative to this skill's directory. It base64-encodes the file, calls the hosted MCP endpoint over plain HTTPS, downloads the result, and writes it next to the input (or to [output-file]).

  1. Remote file (you have a URL, not a local file) — skip the download/re-upload; one curl does it:
curl -sS -X POST https://changethisfile.com/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"convert_file","arguments":{"source_url":"<FILE_URL>","target_format":"pdf"}}}'

The response text contains a download URL — fetch it with curl -o <output>.

Discovering supported routes

Ask before guessing if a conversion is exotic:

curl -sS -X POST https://changethisfile.com/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_conversions","arguments":{"source_format":"docx"}}}'

Omit source_format for a grouped summary of all supported routes.

Limits and errors

  • Max MCP input: 25 MB, including authenticated plans. Larger files should use POST /v1/convert; verified free keys include 25 conversions/month shared across REST and authenticated MCP.
  • Rate limit: 5 conversions/minute per IP. On "Rate limit exceeded", wait 60 seconds and retry once.
  • "Unsupported conversion: X→Y" errors list the valid targets for that source format.
  • Download URLs expire after 1 hour — download immediately, then work with the local file.

Read the full file on GitHub · 56 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 56 lines · 93 tokens per session scan A bca6324778bb

Subscribe to this mod's changes

file-conversion is a skill published in the GitHub repository aadilr/changethisfile-mcp (5 stars, last pushed 16d ago), licensed MIT. It adds 93 tokens to every session and 760 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

excel-cli

Excel CLI automation skill for Windows workbooks. Use when a coding agent needs token-efficient, scriptable, or unattended Excel automation via excelcli commands. Best for CI/CD, scheduled jobs, batch processing, PowerShell workflows, and bulk workbook edits. Supports Power Query, DAX, PivotTables, Tables, Ranges…

sbroenne/mcp-server-excel · 114 tokens

excel-mcp

Excel MCP Server skill for Windows workbook automation. Use when an assistant needs rich MCP tools to create, inspect, modify, format, or analyze Excel files. Supports Power Query (M), Data Model/DAX, PivotTables, Tables, Ranges, Charts, Slicers, formatting, screenshots, VBA macros, connections, and calculation mode.…

sbroenne/mcp-server-excel · 106 tokens

documentation-server

Use when you need to store, retrieve, search, or manage documents in a local knowledge base with semantic search and hybrid (vector + full-text) retrieval. Also use when interacting with the documentation server web interface, managing uploads, or performing AI-powered document analysis. Use this instead of MCP-native…

andrea9293/mcp-documentation-server · 71 tokens

cvx

Create, validate, and render professional CV/resume PDFs from plain YAML using CVX — fully local, no accounts. Use when the user wants to write a CV or resume, convert an existing CV to a maintained format, tailor a CV for a job application, or produce an ATS-safe variant. Covers the cv-content/ YAML schema, the…

hrtips/cvx · 87 tokens

re-port-flow

A procedure for filling Re:port Flow business templates and generating PDF documents. It supports invoices, quotations, and delivery notes, using only information supplied by the user.

re-port-flow/reportflow-mcp · 85 tokens

legacy-shield

Secure zero-knowledge document vault for AI agents. Persistence for your secrets.

bitatlas-group/bitatlas · 19 tokens