
Convert
- 88 installs
- 9 repo stars
- Updated March 26, 2026
- heyman333/markitdown-skill
Converts a file path or URL to Markdown by building the URI and calling the markitdown MCP server's convert_to_markdown tool.
About
Resolves a file path or URL into a proper URI and calls the markitdown MCP server to return Markdown. A developer uses the /convert command to turn documents or web pages into Markdown output.
- Handles http/https/data URLs and local paths as file:// URIs
- Prompts to run /markitdown-setup if the MCP server is not connected
Convert by the numbers
- 88 all-time installs (skills.sh)
- +2 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #338 of 688 Office & Documents skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/heyman333/markitdown-skill --skill convertAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 88 |
|---|---|
| repo stars | ★ 9 |
| Last updated | March 26, 2026 |
| Repository | heyman333/markitdown-skill ↗ |
What it does
Converts a file path or URL to Markdown by building the URI and calling the markitdown MCP server's convert_to_markdown tool.
Files
Convert $ARGUMENTS to Markdown using the markitdown MCP server.
Follow these rules to build the URI:
- If the argument starts with
http://orhttps://ordata:, use it as-is. - If the argument is a local file path (absolute or relative), convert it to a
file://URI. - Resolve relative paths to absolute using the current working directory.
- Example:
/Users/me/docs/report.pdf→file:///Users/me/docs/report.pdf
Then call the convert_to_markdown(uri) tool from the markitdown MCP server with the constructed URI.
Output the resulting Markdown content directly.
If the convert_to_markdown tool is not available, print: "⚠️ markitdown MCP server is not connected. Please run /markitdown-setup first, then restart Claude Code."