Content
<p align="center">
<a href="https://github.com/docling-project/docling-mcp">
<img loading="lazy" alt="Docling" src="https://github.com/docling-project/docling-mcp/raw/main/docs/assets/docling_mcp.png" width="40%"/>
</a>
</p>
# Docling MCP: making docling agentic
[](https://pypi.org/project/docling-mcp/)
[](https://pypi.org/project/docling-mcp/)
[](https://github.com/astral-sh/uv)
[](https://github.com/astral-sh/ruff)
[](https://pydantic.dev)
[](https://github.com/pre-commit/pre-commit)
[](https://opensource.org/licenses/MIT)
[](https://pepy.tech/projects/docling-mcp)
[](https://lfaidata.foundation/projects/)
A document processing service using the Docling-MCP library and MCP (Message Control Protocol) for tool integration.
## Overview
Docling MCP is a service that provides tools for document conversion, processing and generation. It uses the Docling library to convert PDF documents into structured formats and provides a caching mechanism to improve performance. The service exposes functionality through a set of tools that can be called by client applications.
## Features
- Conversion tools:
- PDF document conversion to structured JSON format (DoclingDocument)
- Generation tools:
- Document generation in DoclingDocument, which can be exported to multiple formats
- Local document caching for improved performance
- Support for local files and URLs as document sources
- Memory management for handling large documents
- Logging system for debugging and monitoring
- RAG applications with Milvus upload and retrieval
## Getting started
The easiest way to install Docling MCP is connect it to your client is launching it via [uvx](https://docs.astral.sh/uv/).
Depending on the transfer protocol required, specify the argument `--transport`, for example
- **`stdio`** used e.g. in Claude for Desktop and LM Studio
```sh
uvx --from docling-mcp docling-mcp-server --transport stdio
```
- **`sse`** used e.g. in Llama Stack
```sh
uvx --from docling-mcp docling-mcp-server --transport sse
```
- **`streamable-http`** used e.g. in containers setup
```sh
uvx --from docling-mcp docling-mcp-server --transport streamable-http
```
More options are available, e.g. the selection of which toolgroup to launch. Use the `--help` argument to inspect all the CLI options.
For developing the MCP tools further, please refer to the [docs/development.md](docs/development.md) page for instructions.
## Integration with MCP clients
One of the easiest ways to experiment with the tools provided by Docling MCP is to leverage an AI desktop client with MCP support.
Most of these clients use a common config interface. Adding Docling MCP in your favorite client is usually as simple as adding the following entry in the configuration file.
```json
{
"mcpServers": {
"docling": {
"command": "uvx",
"args": [
"--from=docling-mcp",
"docling-mcp-server"
]
}
}
}
```
When using **[Claude for Desktop](https://claude.ai/download)**, simply edit the config file `claude_desktop_config.json` with the snippet above or the example provided [here](docs/integrations/claude_desktop_config.json).
In **[LM Studio](https://lmstudio.ai/)**, edit the `mcp.json` file with the appropriate section or simply clik on the button below for a direct install.
[](https://lmstudio.ai/install-mcp?name=docling&config=eyJjb21tYW5kIjoidXZ4IiwiYXJncyI6WyItLWZyb209ZG9jbGluZy1tY3AiLCJkb2NsaW5nLW1jcC1zZXJ2ZXIiXX0%3D)
Other integrations are described in [./docs/integrations/](./docs/integrations/).
## Examples
### Converting documents
Example of prompt for converting PDF documents:
```prompt
Convert the PDF document at <provide file-path> into DoclingDocument and return its document-key.
```
### Generating documents
Example of prompt for generating new documents:
```prompt
I want you to write a Docling document. To do this, you will create a document first by invoking `create_new_docling_document`. Next you can add a title (by invoking `add_title_to_docling_document`) and then iteratively add new section-headings and paragraphs. If you want to insert lists (or nested lists), you will first open a list (by invoking `open_list_in_docling_document`), next add the list_items (by invoking `add_listitem_to_list_in_docling_document`). After adding list-items, you must close the list (by invoking `close_list_in_docling_document`). Nested lists can be created in the same way, by opening and closing additional lists.
During the writing process, you can check what has been written already by calling the `export_docling_document_to_markdown` tool, which will return the currently written document. At the end of the writing, you must save the document and return me the filepath of the saved document.
The document should investigate the impact of tokenizers on the quality of LLMs.
```
## License
The Docling MCP codebase is under MIT license. For individual model usage, please refer to the model licenses found in the original packages.
## LF AI & Data
Docling and Docling MCP is hosted as a project in the [LF AI & Data Foundation](https://lfaidata.foundation/projects/).
**IBM ❤️ Open Source AI**: The project was started by the AI for knowledge team at IBM Research Zurich.
[docling_document]: https://docling-project.github.io/docling/concepts/docling_document/
[integrations]: https://docling-project.github.io/docling-mcp/integrations/
You Might Also Like
Ollama
Ollama enables easy access to large language models on macOS, Windows, and Linux.

n8n
n8n is a secure workflow automation platform for technical teams with 400+...
OpenWebUI
Open WebUI is an extensible web interface for customizable applications.

Dify
Dify is a platform for AI workflows, enabling file uploads and self-hosting.

Zed
Zed is a high-performance multiplayer code editor from the creators of Atom.
MarkItDown MCP
markitdown-mcp is a lightweight MCP server for converting URIs to Markdown.