AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Mineru Convert

skill-avatarganymede-mineru-mcp-mineru-convert · by AvatarGanymede

Convert a document URL to Markdown via the Smithery-deployed MinerU MCP server (TypeScript version). Downloads and extracts results to temp/ directory.

— No reviews yet
0 installs
31 views
0.0% view→install

Install

$ agentstack add skill-avatarganymede-mineru-mcp-mineru-convert

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • ✓ Prompt-injection patterns
  • ✓ Secret / credential exfiltration
  • ✓ Dangerous shell & filesystem operations
  • ✓ Untrusted network calls
  • ✓ Known-malicious package signatures

What it can access

  • ● Network access Used
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ✓ Environment & secrets No
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-avatarganymede-mineru-mcp-mineru-convert)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
○ 7mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Mineru Convert? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Smithery Document URL to Markdown Conversion

Use the Smithery-deployed MinerU MCP server (TypeScript version) to convert a document URL to Markdown. This skill is for URL-based input only — local file paths are not supported by the remote server.

Input

The user will provide:

  1. Document URL (required): an HTTP/HTTPS URL pointing to the document
  2. Instructions (optional): what to do with the converted content (analyze, summarize, etc.)

Supported formats: PDF, DOC, DOCX, PPT, PPTX, PNG, JPG, JPEG, HTML

Important Rules

  1. Always use relative paths when executing shell commands. Never use absolute paths. Never cd to an absolute path before running a command — just use relative paths directly.
  2. Auto-extract zip files. When the output is a zip file, automatically unzip it to the same directory (same name without .zip extension). Do NOT delete the zip file after extraction.
  3. This skill only works with URLs. If the user provides a local file path, tell them to use the /convert-to-markdown skill instead.

Workflow

1. Validate input

  • Confirm the input starts with http:// or https://.
  • If not, inform the user that this skill only supports URLs and suggest using /convert-to-markdown for local files.

2. Convert via MCP

Call the MCP tool convert_to_markdown with the document URL:

  • The server auto-detects file type and configures optimal settings (model, OCR, etc.)
  • The server polls until the task completes or times out
  • On success, the server returns a download URL for the result zip file

3. Download the result

After the MCP tool returns a download URL:

  1. Derive the output filename from the URL (e.g., report.pdf → report.zip).
  2. Download the zip file to ./temp/ using curl:
curl -L -o ./temp/.zip "" --retry 3 --connect-timeout 30 --max-time 600 -f -s -S
  1. If curl fails, report the error and provide the download URL so the user can download manually.

4. Extract & Read

After the zip is downloaded:

  1. Unzip it to a directory next to the zip file (same name without .zip extension):
unzip -o ./temp/.zip -d ./temp/
  1. Find the .md file(s) inside the extracted directory.
  2. Read the Markdown content.
  3. If the Markdown references other files (e.g. images via ``), note their paths — these are the only other files that matter.
  4. Ignore all other extracted files (JSON, content_list, middle results, etc.). Only focus on the .md file(s) and the files they reference.

5. Respond

  • If the user asked for analysis: Read the Markdown content and provide a summary or answer the user's questions about it.
  • If no specific instructions: Confirm conversion is complete and show the path to the extracted Markdown file(s).

Error Handling

  • If the MCP tool returns an error creating the task, report the API error message.
  • If the task times out, return the task_id and suggest the user call get_task_status later.
  • If the task fails, report the error message from MinerU.
  • If curl download fails, provide the download URL for the user to download manually.
  • If unzip fails, inform the user and provide the zip file path.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.