Install
openclaw skills install @agentpmt/markitdown-hosted-markdown-generatorMarkItDown 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.
openclaw skills install @agentpmt/markitdown-hosted-markdown-generatorLast 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)