Making docling agentic through MCP
claude mcp add docling-mcp -- uvx docling-mcp-server{
"mcpServers": {
"docling-mcp": {
"command": "uvx",
"args": ["docling-mcp-server"],
"env": {
"DOCLING_MCP_SERVICE_URL": "<docling_mcp_service_url>",
"DOCLING_MCP_SERVICE_API_KEY": "<docling_mcp_service_api_key>"
}
}
}
}DOCLING_MCP_SERVICE_URLDOCLING_MCP_SERVICE_API_KEYResumen de MCP Servers
<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/)
[](https://registry.modelcontextprotocol.io)
A document processing service using the Docling-MCP library and MCP (Model Context Protocol) for tool integration.
## Overview
[Docling](https://github.com/docling-project/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.
## 🆕 What's New in v2.0
**Major Architecture Update**: Docling MCP v2.0 introduces a hybrid architecture with support for both remote API and local conversion modes:
- **🚀 90% Size Reduction**: Base package is now ~50MB (down from ~500MB)
- **⚡ Faster Installation**: No model downloads required for default remote mode
- **🌐 Remote API Support**: Use Docling Serve for scalable cloud-based conversion
- **💻 Local Mode Available**: Install `[local]` extra for offline/local conversion
- **🔄 Automatic Fallback**: Optional fallback from remote to local mode
- **🎯 Flexible Configuration**: Choose the mode that fits your needs
**Migration**: Upgrading from v1.x? See [MIGRATION_v2.md](MIGRATION_v2.md) for detailed instructions.
## Installation Options
### Remote Mode (Recommended - Lightweight)
For users with access to Docling Serve API:
> **Getting Docling Serve**: Visit [docling-serve](https://github.com/docling-project/docling-serve) for installation guides. You can deploy it from published container images or look for managed Docling SaaS offerings.
```bash
pip install docling-mcp
```
Then configure your environment:
```bash
export DOCLING_MCP_SERVICE_URL=https://your-docling-service.example.com
export DOCLING_MCP_SERVICE_API_KEY=your-api-key-here
export DOCLING_MCP_CONVERSION_MODE=remote
```
### Local Mode (Full Features)
For users who need local conversion or don't have Docling Serve access:
```bash
pip install docling-mcp[local]
```
Then configure your environment:
```bash
export DOCLING_MCP_CONVERSION_MODE=local
```
### Hybrid Mode (Best of Both)
Install with local support and enable automatic fallback:
```bash
pip install docling-mcp[local]
```
Configure for remote with fallback:
```bash
export DOCLING_MCP_SERVICE_URL=https://your-docling-service.example.com
export DOCLING_MCP_CONVERSION_MODE=remote
export DOCLING_MCP_FALLBACK_TO_LOCAL=true
```
## Features
- Conversion tools:
- PDF document conversion to structured JSON format ([DoclingDocument][docling_document])
- 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
## Configuration
All settings use the `DOCLING_MCP_` prefix and can be supplied as environment
variables, in a `.env` file in the working directory, or via the `env` block of
your MCP client config. Copy [`.env.example`](.env.example) as a starting point.
### Conversion mode
| Variable | Default | Description |
|---|---|---|
| `DOCLING_MCP_CONVERSION_MODE` | `remote` | `remote` or `local` |
### Remote service (required when `DOCLING_MCP_CONVERSION_MODE=remote`)
| Variable | Default | Description |
|---|---|---|
| `DOCLING_MCP_SERVICE_URL` | — | URL of the Docling Serve instance |
| `DOCLING_MCP_SERVICE_API_KEY` | — | API key for the service |
| `DOCLING_MCP_SERVICE_TIMEOUT` | `300.0` | Request timeout in seconds |
| `DOCLING_MCP_SERVICE_MAX_RETRIES` | `3` | Max retry attempts |
| `DOCLING_MCP_FALLBACK_TO_LOCAL` | `false` | Fall back to local if service is unreachable (requires `docling-mcp[local]`) |
### Conversion pipeline (applies to both modes)
| Variable | Default | Description |
|---|---|---|
| `DOCLING_MCP_KEEP_IMAGES` | `false` | Retain page images in output |
| `DOCLING_MCP_IMAGES_SCALE` | `1.0` | Image scale factor (increase to avoid tensor padding errors) |
| `DOCLING_MCP_DO_OCR` | `true` | Run OCR pipeline |
| `DOCLING_MCP_DO_TABLE_STRUCTURE` | `true` | Detect table structure |
### LlamaIndex RAG (`--tools llama-index-rag`)
| Variable | Default | Description |
|---|---|---|
| `DOCLING_MCP_LI_API_BASE` | `http://127.0.0.1:1234/v1` | OpenAI-compatible LLM endpoint |
| `DOCLING_MCP_LI_API_KEY` | `none` | API key for the LLM endpoint |
| `DOCLING_MCP_LI_MODEL_ID` | `ibm/granite-3.2-8b` | LLM model identifier |
| `DOCLING_MCP_LI_EMBEDDING_MODEL` | `BAAI/bge-base-en-v1.5` | HuggingFace embedding model |
### LlamaStack (`--tools llama-stack-rag` / `--tools llama-stack-ie`)
| Variable | Default | Description |
|---|---|---|
| `DOCLING_MCP_LLS_URL` | `http://localhost:8321` | LlamaStack server URL |
| `DOCLING_MCP_LLS_VDB_EMBEDDING` | `all-MiniLM-L6-v2` | Embedding model for vector DB |
| `DOCLING_MCP_LLS_EXTRACTION_MODEL` | `openai/gpt-oss-20b` | Model used for structured extraction |
### Setting variables in an MCP client config
```json
{
"mcpServers": {
"docling": {
"command": "uvx",
"args": [
"--from=docling-mcp",
"docling-mcp-server"
],
"env": {
"DOCLING_MCP_CONVERSION_MODE": "remote",
"DOCLING_MCP_SERVICE_URL": "https://your-docling-service.example.com",
"DOCLING_MCP_SERVICE_API_KEY": "your-api-key-here"
}
}
}
}
```
## Getting started
The easiest way to install Docling MCP and connect it to your client is by 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 [Developing](CONTRIBUTING.md#developing) section of CONTRIBUTING.md 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 click on the button below for a direct install.
[](https://lmstudio.ai/install-mcp?name=docling&config=eyJjb21tYW5kIjoidXZ4IiwiYXJncyI6WyItLWZyb209ZG9jbGluZy1tY3AiLCJkb2NsaW5nLW1jcC1zZXJ2ZXIiXX0%3D)
Other integrations are described in the [integrations] page.
## 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_documenLo que la gente pregunta sobre docling-mcp
¿Qué es docling-project/docling-mcp?
+
docling-project/docling-mcp es mcp servers para el ecosistema de Claude AI. Making docling agentic through MCP Tiene 701 estrellas en GitHub y se actualizó por última vez today.
¿Cómo se instala docling-mcp?
+
Puedes instalar docling-mcp clonando el repositorio (https://github.com/docling-project/docling-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar docling-project/docling-mcp?
+
docling-project/docling-mcp aún no ha sido auditado por nuestro agente de seguridad. Revisa el repositorio original en GitHub antes de usarlo en producción.
¿Quién mantiene docling-project/docling-mcp?
+
docling-project/docling-mcp es mantenido por docling-project. La última actividad registrada en GitHub es de today, con 36 issues abiertos.
¿Hay alternativas a docling-mcp?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega docling-mcp en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/docling-project-docling-mcp)<a href="https://claudewave.com/repo/docling-project-docling-mcp"><img src="https://claudewave.com/api/badge/docling-project-docling-mcp" alt="Featured on ClaudeWave: docling-project/docling-mcp" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!