🚀 v2.0.12: File-first output for extract_text and pdf_to_markdown

This commit is contained in:
Ryan Malloy 2026-02-18 15:02:04 -07:00
parent 772bcac0df
commit 213a721949
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[project]
name = "mcp-pdf"
version = "2.0.11"
version = "2.0.12"
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.11",
"version": "2.0.12",
"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.11"
package_version = "2.0.12"
logger.info(f"🎬 MCP PDF Tools Server v{package_version} (Official Pattern)")