home / mcp / docling mcp server

Docling MCP Server

Provides document-to-Markdown conversion via MCP using Docling, converting inputs to Markdown.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "deep070203-docling-mcp": {
      "command": "uvx",
      "args": [
        "docling-mcp"
      ]
    }
  }
}

Docling MCP Server enables you to convert documents into Markdown using Docling’s parsing capabilities via the MCP interface. This server focuses on transforming input content into Markdown, making it easy to integrate into your data workflows and documentation pipelines.

How to use

You connect to this MCP server from an MCP client. The server runs locally or in your environment and exposes a simple runtime command that you use to start it. When you send document data to the server, it returns the converted Markdown output.

To run the server locally with the runtime shown, start the process and then point your MCP client to it. The server is configured to perform document-to-Markdown conversion and does not currently support other output formats.

{
  "mcpServers": {
    "docling-mcp": {
      "command": "uvx",
      "args": ["docling-mcp"]
    }
  }
}

Available tools

markdown_conversion

Converts document inputs into Markdown format using Docling, producing Markdown strings that preserve structure and content.