소스 정보
- 저장소
- run-llama/llamaparse-agent-plugins
- 최근 소스 활동
- 2026년 8월 6일 20:02
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/run-llama/llamaparse-agent-plugins --skill llamaparse-mcp명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | llamaparse-mcp |
| description | Skill on how to use the LlamaParse MCP tools |
| compatibility | Needs authenticated access to https://mcp.llamaindex.ai/mcp |
| license | MIT |
| metadata | {"author":"LlamaIndex","version":"0.1.0"} |
All tools require a valid session. If a tool call returns an authentication error, ask the user to re-authenticate before retrying. Do not retry automatically without prompting the user.
The server runs as two regional deployments — https://mcp.llamaindex.ai/mcp for accounts on cloud.llamaindex.ai, and https://mcp.eu.llamaindex.ai/mcp for accounts on cloud.eu.llamaindex.ai. Region follows the user's LlamaCloud account, so it is not something to switch mid-session. This plugin is pinned to the North America endpoint; a token issued for Europe is rejected with a 401 naming the other endpoint, and because the URL is fixed in the plugin manifest the fix is to install the llamaparse-mcp-eu plugin instead — tell the user that rather than retrying.
Every operation (parse, classify, split) requires a fileId obtained by uploading first. There are two upload paths — choose based on where the file lives:
uploadFileByUrl. Pass the direct download URL and a descriptive file name. This is the preferred path when the user shares a link.getUploadUrl first to obtain a pre-signed upload URL and token, then POST the file to the returned endpoint. The token is valid for 10 minutes; complete the upload before it expires.For getUploadUrl, always set purpose to match the intended downstream operation ('parse', 'classify', 'split', etc.) so the server can apply the right storage policy.
Once you have a fileId, pick the tool that matches the user's goal:
| Goal | Tool |
|---|---|
| Extract text or markdown content | parseFile |
| Determine which category a document belongs to | classifyFile |
| Break a multi-section document into labeled segments | splitFile |
These are independent — you can run any combination on the same fileId.
Use parseFile to extract readable content. Choose the tier based on document complexity:
cost_effective — fast and cheap; good for standard PDFs with clean text and simple layouts.agentic — slower; use when the document has tables, multi-column layouts, or embedded images that need accurate extraction.agentic_plus — most thorough; reserve for documents where extraction quality is critical and cost/latency are acceptable.When in doubt, start with cost_effective. Escalate to agentic only if the output is missing content or has structural errors.
Set markdown: true (the default) when the extracted content will be rendered or passed to an LLM. Set it to false when you need plain text without formatting.
Use classifyFile when the user wants to route or label a document. Define categories as precisely as possible — vague category descriptions reduce confidence. Include a description that explains what distinguishes each category from the others, not just what it is.
Use splitFile when a single document contains multiple logical sections that should be handled separately (e.g., a combined PDF of multiple contracts, or a report with distinct chapters). Define categories by the sections you expect, not by generic document types.
Choose allowUncategorized based on how strict the split needs to be:
'include' (default) — unknown pages are grouped under an uncategorized segment; safe for exploratory use.'omit' — uncategorized pages are silently dropped; use when you only care about specific sections.'forbid' — the operation fails if any page cannot be categorized; use when completeness is required.Common multi-step patterns:
parseFile on each segment's pages separately (re-upload the relevant pages if needed).fileId can be passed to parseFile, classifyFile, and splitFile independently; you do not need to re-upload.The server also exposes Index v2 knowledge-base tools (getUserProjects, listIndexes, findFilesInIndex, readFileFromIndex, grepFileFromIndex, retrieveFromIndex). Their usage — the agentic-retrieval workflow, tool selection, and grounding rules — is covered by the llamacloud-index skill bundled in this plugin; consult that skill when a task involves retrieving answers from an index.
The server enforces a per-user rate limit. If you receive a rate limit error, read the Retry-After value from the response and wait that many seconds before retrying. Do not retry immediately in a loop.
uploadFileByUrl fails, check whether the URL is publicly accessible and the file type is supported.parseFile returns incomplete content, retry with a higher tier.classifyFile or splitFile time out, the job may still be running on the server — inform the user rather than re-submitting the same job immediately.SOC 직업 분류 기준