원클릭으로
liteparse
Fast document parsing for RAG pipelines via LiteParse (Rust, 100x faster than Python parsers)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Fast document parsing for RAG pipelines via LiteParse (Rust, 100x faster than Python parsers)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
In-process vector database for AI applications — embed vector search, hybrid retrieval, and full-text search directly into your application without managing a separate server.
LLM-powered knowledge extraction CLI — transform unstructured text into structured knowledge (graphs, hypergraphs, spatio-temporal graphs) with a single command.
Give your AI agent one-click internet access — Twitter, Reddit, YouTube, GitHub, Bilibili, and more. Zero API fees.
Generate token-efficient CLIs for AI agents by reading API docs and studying community patterns. Prints Go binaries + Claude Code skills + MCP servers.
Terminal AI coding agent with video input, subagents, MCP support, and ACP editor integration
AI-powered code review CLI — deterministic pipelines + LLM agent, battle-tested at Alibaba scale
| name | liteparse |
| description | Fast document parsing for RAG pipelines via LiteParse (Rust, 100x faster than Python parsers) |
| tags | ["rag","document-parsing","rust","pdf","llm"] |
| related_skills | ["crawl4ai","huggingface-hub"] |
Parse PDFs, DOCX, HTML, and other documents 100x faster than Python parsers. From the LlamaIndex team.
cargo install liteparse or pip install liteparseliteparse document.pdf --output ./parsed/
liteparse ./documents/ --recursive --output ./parsed/
from liteparse import parse
result = parse("document.pdf")
print(result.markdown) # Clean markdown output
print(result.tables) # Extracted tables as dataframes
print(result.images) # Extracted images as paths
print(result.metadata) # Title, author, dates
liteparse serve --port 8091
# Add to agent config:
# "mcpServers": {"liteparse": {"command": "liteparse", "args": ["serve", "--port", "8091"]}}
| Format | Support | Notes |
|---|---|---|
| ✅ Full | Text, tables, images, metadata | |
| DOCX | ✅ Full | Headings, lists, tables |
| HTML | ✅ Full | DOM-aware extraction |
| Markdown | ✅ Passthrough | Clean formatting |
| EPUB | ✅ Full | Chapter structure preserved |
# Parse a test document and verify output
liteparse test.pdf --output ./test-output/
cat ./test-output/test.md # Should contain extracted text
ls ./test-output/ # Should contain images if present