Skills and Plugins
Use the LlamaParse skills and plugins to make your agents better at processing documents.
LlamaParse ships agent skills (focused capabilities that teach coding agents how to parse and extract content from documents) and agent plugins that bundle those skills (and, in one case, the LlamaParse MCP) for one-step installation in Claude Code and Codex.
Skills
Section titled “Skills”A skill is a self-contained capability an agent loads on demand. LlamaParse provides two:
llamaparse— unstructured document parsing and text extraction powered by Parse. Handles PDFs, presentations, Word documents, spreadsheets, and images, and is built for complex documents with charts and tables that need sophisticated extraction. Requires aLLAMA_CLOUD_API_KEY(see the API Key guide), Node 18+, and npm; it can use the@llamaindex/llama-cloudpackage.liteparse— local-first, fast document parsing, conversion, and spatial text extraction. Prioritizes speed for PDFs and text-dense documents with tables and images, and runs entirely locally with no API key. Requires Node 18+, npm, and the globally installed@llamaindex/liteparsepackage; Office support additionally needs LibreOffice, and image support needs ImageMagick.
Installing skills
Section titled “Installing skills”Install both skills from the skills repository
with the skills CLI:
npx skills add run-llama/llamaparse-agent-skillsTo install a single skill, pass --skill:
npx skills add run-llama/llamaparse-agent-skills --skill llamaparseAlternatively, download the .zip from the repository’s GitHub Releases.
Plugins
Section titled “Plugins”Plugins package the skills above for Claude Code and Codex so you can install and enable them from within the agent. Three plugins are available:
liteparse— theliteparseskill: parse and extract content from PDFs, Office docs, and images locally. No authentication required.llamaparse— thellamaparseskill: cloud-based, advanced document parsing. Requires a LlamaParse API key.llamaparse-mcp— bundles a skill together with the LlamaParse MCP, connecting your agent to the LlamaParse Platform (parse, split, classify, and more) athttps://mcp.llamaindex.ai/mcp. Prompts you to authenticate on first use of an MCP tool.
Installing plugins
Section titled “Installing plugins”Add the marketplace:
/plugin marketplace add run-llama/llamaparse-agent-pluginsThen enable a plugin with its slash command — for example /liteparse:liteparse,
/llamaparse:llamaparse, or /llamaparse-mcp:llamaparse-mcp.
Add the marketplace:
codex plugin marketplace add run-llama/llamaparse-agent-pluginsThen enable the plugins you want through Codex’s plugin management.