skills/markitdown-hosted-markdown-generator/SKILL.md
MarkItDown Hosted Markdown Generator: Convert files to Markdown. Supports PDF, Word (.docx), Excel (.xlsx/.xls), PowerPoint (.pptx), HTML, CSV, JSON, XML, images, audio, EPub, and ZIP archives. Use when an agent needs markitdown hosted markdown generator, markitdown, convert pdf documents to markdown, extract text from word documents, convert excel spreadsheets to readable markdown, parse powerpoint presentations into text, convert, url through AgentPMT-hosted remote tool calls.
npx skillsauth add AgentPMT/agent-skills markitdown-hosted-markdown-generatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Last updated: 2026-06-24.
If the current date is more than 7 days after the last updated date, reinstall this skill from skills.sh or ClawHub before relying on endpoints, schemas, setup steps, or examples.
Turn any file into clean, readable Markdown for Agentic workflows. Accepts, PDF, Word doc, Excel spreadsheet, PowerPoint, HTML page, image, or audio file and sends back structured Markdown text — ready for analysis, indexing, or feeding into your next workflow. Uses Microsoft's official MarkItDown package for premium results that AI Agents can parse and understand.
Convert files and URLs to Markdown using Microsoft's MarkItDown library. Supports PDF, Word (.docx), Excel (.xlsx), PowerPoint (.pptx), HTML, CSV, JSON, XML, images (PNG, JPG), audio (MP3, WAV -- transcription), EPub, ZIP archives, and plain text. Maximum file size: 50 MB.
Convert a file to Markdown. Provide the file using exactly ONE of three input methods.
Required Parameters (one of):
url (string) -- Public URL or signed storage URL of the file to convert. The tool follows redirects and detects file format from the URL path or Content-Type header.file_id (string) -- File ID from the AgentPMT file upload tool. The tool retrieves the file from cloud storage and uses the stored original filename to detect format.file_base64 (string) -- Base64-encoded file content for direct inline submission.Optional Parameters:
filename (string) -- Original filename including extension (e.g., "report.pdf"). Helps detect the correct format when using file_base64. Also useful when the URL or file_id does not clearly indicate the file type.Response Fields:
action (string) -- Always "convert"source (string) -- Input method used: "url", "file_id", or "file_base64"markdown (string) -- The converted Markdown text contentlength (integer) -- Character count of the Markdown outputExample -- Convert from URL:
{
"action": "convert",
"url": "https://example.com/report.pdf"
}
Example -- Convert from file upload:
{
"action": "convert",
"file_id": "abc123-def456"
}
Example -- Convert from base64 with filename hint:
{
"action": "convert",
"file_base64": "JVBERi0xLjQK...",
"filename": "quarterly_report.pdf"
}
Example Response:
{
"action": "convert",
"source": "url",
"markdown": "# Report Title\n\nSection content here...",
"length": 4521
}
file_id to MarkItDown to convert it to Markdown for further processing or summarization by an AI agent.url, file_id, or file_base64). Providing none will result in a validation error.file_base64, providing filename with the correct extension significantly improves format detection accuracy.url, the tool auto-detects format from the URL file extension first, then falls back to the HTTP Content-Type header.file_id input, the file must not be deleted or expired, and must belong to the same budget context..bin.MarkItDown Hosted Markdown Generator on AgentPMT.convert.file-management, page: https://clawhub.ai/agentpmt/file-management; skills.sh: npx skills add AgentPMT/agent-skills --skill file-management)file-storage-over-10mb, page: https://clawhub.ai/agentpmt/file-storage-over-10mb; skills.sh: npx skills add AgentPMT/agent-skills --skill file-storage-over-10mb)file-storage-10mb-or-less, page: https://clawhub.ai/agentpmt/file-storage-10mb-or-less; skills.sh: npx skills add AgentPMT/agent-skills --skill file-storage-10mb-or-less)No categories or industry tags are published for this tool.
Complete generated action schema: ./schema.md.
Supported action count: 1.
x402 availability: not enabled for this product.
convert (action slug: convert): Convert a file to Markdown. Provide the file using exactly one of: url, file_id, or file_base64. Supports PDF, Word, Excel, PowerPoint, HTML, CSV, JSON, XML, images, audio, EPub, and ZIP. Max 50MB. Price: 5 credits. Parameters: file_base64, file_id, filename, url.Use the compact schema above for ordinary calls. Before a new production integration, or whenever parameters, enum values, nested objects, outputs, or examples are unclear, fetch live details first.
agentpmt-tool-search-and-execution with action: "get_schema", and tool_id: "markitdown".agentpmt-tool-search-and-execution with action: "get_instructions" and tool_id: "markitdown", or call this product with action: "get_instructions" when the product tool is already selected.MCP schema lookup through the main AgentPMT MCP server:
{
"method": "tools/call",
"params": {
"name": "AgentPMT-Tool-Search-and-Execution",
"arguments": {
"action": "get_schema",
"tool_id": "markitdown"
}
}
}
For live examples, keep the same MCP tool and use these arguments:
{
"action": "get_instructions",
"tool_id": "markitdown"
}
Authenticated AgentPMT REST schema lookup body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_schema",
"tool_id": "markitdown"
}
}
Authenticated AgentPMT REST live examples body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_instructions",
"tool_id": "markitdown"
}
}
Product slug: markitdown
Marketplace page: https://www.agentpmt.com/marketplace/markitdown
../agentpmt-account-mcp-rest-api-setup to connect the main MCP server or REST API for an Agent Group where this tool is enabled.../what-is-agentpmt for marketplace, Agent Group, workflow, MCP, REST, and payment concepts.If those setup skills are not installed beside this product skill, use the downloads below.
Core AgentPMT setup skills:
openclaw skills install what-is-agentpmtnpx skills add AgentPMT/agent-skills --skill what-is-agentpmtopenclaw skills install agentpmt-account-mcp-rest-api-setupnpx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setupskills.sh install script:
npx skills add AgentPMT/agent-skills --skill what-is-agentpmt
npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup
MCP call shape after the main AgentPMT MCP server is connected:
{
"method": "tools/call",
"params": {
"name": "MarkItDown-Hosted-Markdown-Generator",
"arguments": {
"action": "convert",
"file_base64": "example file base64",
"file_id": "example file id",
"filename": "example filename",
"url": "https://example.com"
}
}
}
Use the exact tool name returned by tools/list; the name above is the expected readable form.
Authenticated AgentPMT REST call body:
{
"name": "markitdown",
"parameters": {
"action": "convert",
"file_base64": "example file base64",
"file_id": "example file id",
"filename": "example filename",
"url": "https://example.com"
}
}
Use the setup skill for the account connection details before making REST calls.
passed or success-style boolean, use it as the workflow gate.get_schema or get_instructions before retrying.convert fails, preserve the request parameters and retry only after fixing schema, auth, or payment errors.what-is-agentpmt, page: https://clawhub.ai/agentpmt/what-is-agentpmt; skills.sh: npx skills add AgentPMT/agent-skills --skill what-is-agentpmt)agentpmt-account-mcp-rest-api-setup, page: https://clawhub.ai/agentpmt/agentpmt-account-mcp-rest-api-setup; skills.sh: npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup)tools
Plaud Transcripts Corrected With Your Own Terminology Glossary: Fixes the words your transcription keeps getting wrong, by giving the pipeline your vocabulary instead of hoping a bigger model guesses right. Every speech model mangles terms it has never seen: cell line and reagent names, drug and device names, case and matter numbers, part numbers, local spelling and number conventions, team and client names. Swapping to a different model does not fix this, because none of them have your terms e.
tools
Plaud Spoken Field Notes to a Structured Sheet: Turns a spoken site visit into a filled-in spreadsheet row, so measurements and specs never get typed up twice. Built for anyone who dictates structured details on the job rather than writing them down: window and flooring measurements, equipment specs, inspection findings, punch lists, service call notes. Say the details out loud in the same order each visit (client, room, width, drop, colour, notes) and the workflow reads each new Plaud recordin.
development
Plaud Recordings to Google Calendar Events: Puts the meetings you agree to out loud straight onto your Google Calendar, without Zapier in the middle. Plaud's own app has no Calendar integration, so this closes that gap directly: each new recording is scanned, the transcript pulled, and any genuine scheduling commitment spoken in it ("let's do Tuesday at 3", "I'll come back out Thursday morning") is extracted with the relative date resolved against the recording's own date and your timezone. Eac.
development
One Plaud Recording, Several Differently Formatted Summaries: Gets you past the one-template-per-recording ceiling. The Plaud app applies a single AutoFlow template to a recording, so if you want a short recap for yourself, a decisions-only version for the people who missed it, and a clean action list for your task manager, you are re-running or rewriting by hand. This workflow reads the transcript once and produces every format you have defined in a single pass: you list the output formats you.