parse-document
GitHub通过 Superlinked MCP 将 PDF、扫描件或办公文件转换为 Markdown,避免直接读取原文档占用上下文。适用于用户请求解析、OCR、提取内容、总结或基于文档问答的场景。
Trigger Scenarios
Install
npx skills add superlinked/sie --skill parse-document -g -y
SKILL.md
Frontmatter
{
"name": "parse-document",
"description": "Convert a PDF, scan, image of a page, or office file to clean markdown through the connected Superlinked MCP edge, so the source document is not read into model context directly. Use when the user asks to read, parse, OCR, extract from, summarize, or answer questions about a document."
}
Parse a Document with Superlinked MCP
Use the connected Superlinked MCP server to convert the source file to markdown
through the MCP docs_to_markdown tool, then work from the markdown artifact.
Steps
-
Do not open, view, attach, or read the source document into context. Read its raw bytes only and base64-encode those bytes.
-
Call the Superlinked MCP
docs_to_markdowntool with:document_base64: the base64-encoded source bytesfilename: the original filenameengine:autounless the user explicitly asks to forcedoclingorvl-ocrocr: leavefalseunless forcing thedoclingOCR path
-
Write the returned markdown to
processed/<source-stem>.md. Createprocessed/if it does not exist. -
Your next message must begin with a short receipt, then answer from the artifact selectively:
Parsed <source> -> processed/<source-stem>.md (<chars> chars)If the MCP metadata includes token-saving figures, include those figures directly under the receipt. Keep estimates marked as estimates.
-
Answer the user's question from the artifact. Grep or read specific sections; do not read the whole markdown file unless it is small.
Errors
If the MCP call fails, relay the tool error and do not retry blindly. For auth
or connector errors, tell the user to reinstall the generated MCP plugin pack or
rerun the generated claude mcp add ... --header 'Authorization: Bearer ...'
command from INSTALL.md.
Version History
- 1c7bbe8 Current 2026-09-08 17:33


