🚀 v2.0.11: Fix pdf_to_markdown broken image references
This commit is contained in:
parent
8b5783585f
commit
2d5f7e241d
@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "mcp-pdf"
|
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"
|
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"}]
|
authors = [{name = "Ryan Malloy", email = "ryan@malloys.us"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|||||||
@ -107,7 +107,7 @@ class PDFServerOfficial:
|
|||||||
"""Get detailed server information including mixins and configuration"""
|
"""Get detailed server information including mixins and configuration"""
|
||||||
return {
|
return {
|
||||||
"server_name": "MCP PDF Tools (Official FastMCP Pattern)",
|
"server_name": "MCP PDF Tools (Official FastMCP Pattern)",
|
||||||
"version": "2.0.10",
|
"version": "2.0.11",
|
||||||
"architecture": "Official FastMCP Mixin Pattern",
|
"architecture": "Official FastMCP Mixin Pattern",
|
||||||
"total_mixins": len(self.mixins),
|
"total_mixins": len(self.mixins),
|
||||||
"mixins": [
|
"mixins": [
|
||||||
@ -162,7 +162,7 @@ def main():
|
|||||||
from importlib.metadata import version
|
from importlib.metadata import version
|
||||||
package_version = version("mcp-pdf")
|
package_version = version("mcp-pdf")
|
||||||
except:
|
except:
|
||||||
package_version = "2.0.10"
|
package_version = "2.0.11"
|
||||||
|
|
||||||
logger.info(f"🎬 MCP PDF Tools Server v{package_version} (Official Pattern)")
|
logger.info(f"🎬 MCP PDF Tools Server v{package_version} (Official Pattern)")
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user