🚀 v2.0.11: Fix pdf_to_markdown broken image references

This commit is contained in:
Ryan Malloy 2026-02-12 20:24:40 -07:00
parent 8b5783585f
commit 2d5f7e241d
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[project]
name = "mcp-pdf"
version = "2.0.10"
version = "2.0.11"
description = "Secure FastMCP server for comprehensive PDF processing - text extraction, OCR, table extraction, forms, annotations, and more"
authors = [{name = "Ryan Malloy", email = "ryan@malloys.us"}]
readme = "README.md"

View File

@ -107,7 +107,7 @@ class PDFServerOfficial:
"""Get detailed server information including mixins and configuration"""
return {
"server_name": "MCP PDF Tools (Official FastMCP Pattern)",
"version": "2.0.10",
"version": "2.0.11",
"architecture": "Official FastMCP Mixin Pattern",
"total_mixins": len(self.mixins),
"mixins": [
@ -162,7 +162,7 @@ def main():
from importlib.metadata import version
package_version = version("mcp-pdf")
except:
package_version = "2.0.10"
package_version = "2.0.11"
logger.info(f"🎬 MCP PDF Tools Server v{package_version} (Official Pattern)")