From 1ff8c2fcdc0ab90d06bdb6693ea5b680142cc77b Mon Sep 17 00:00:00 2001 From: jedarden Date: Sun, 31 May 2026 23:34:41 -0400 Subject: [PATCH] docs(pdftract-145s8): fix broken MCP cross-references in Python SDK docs - Fix broken links from ../integrations/mcp-clients.md to ../cli/mcp.md - Update link text from 'MCP Client Configuration Guide' to 'MCP Server Documentation' - Ensures all cross-references work in mdBook build --- docs/user-docs/src/sdk/python.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/user-docs/src/sdk/python.md b/docs/user-docs/src/sdk/python.md index 4352e38..e75d96d 100644 --- a/docs/user-docs/src/sdk/python.md +++ b/docs/user-docs/src/sdk/python.md @@ -207,13 +207,13 @@ doc = pdftract.extract("https://example.com/document.pdf") ## MCP Integration -For AI-assisted PDF extraction, pdftract provides an [MCP (Model Context Protocol) server](../integrations/mcp-clients.md). The Python SDK can be used alongside MCP clients like Claude Desktop: +For AI-assisted PDF extraction, pdftract provides an [MCP (Model Context Protocol) server](../cli/mcp.md). The Python SDK can be used alongside MCP clients like Claude Desktop: ```bash pdftract mcp --stdio ``` -See [MCP Client Configuration Guide](../integrations/mcp-clients.md) for setup instructions. +See [MCP Server Documentation](../cli/mcp.md) for setup instructions. ## Types @@ -244,7 +244,7 @@ async def extract_async(): ## See Also -- [MCP Client Configuration Guide](../integrations/mcp-clients.md) +- [MCP Server Documentation](../cli/mcp.md) - [JSON Schema Reference](../json-schema-reference.md) - [CLI Reference](../cli/README.md) - [Advanced: OCR Configuration](../advanced/ocr.md)