Ryan Malloy b681cb030b Initial commit: MCP Office Tools v0.1.0
- Comprehensive Microsoft Office document processing server
- Support for Word (.docx, .doc), Excel (.xlsx, .xls), PowerPoint (.pptx, .ppt), CSV
- 6 universal tools: extract_text, extract_images, extract_metadata, detect_office_format, analyze_document_health, get_supported_formats
- Multi-library fallback system for robust processing
- URL support with intelligent caching
- Legacy Office format support (97-2003)
- FastMCP integration with async architecture
- Production ready with comprehensive documentation

🤖 Generated with Claude Code (claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-18 01:01:48 -06:00

13 lines
408 B
Python

"""MCP Office Tools - Comprehensive Microsoft Office document processing server.
A FastMCP server providing 30+ tools for processing Microsoft Office documents
including Word (.docx, .doc), Excel (.xlsx, .xls), and PowerPoint (.pptx, .ppt) formats.
"""
__version__ = "0.1.0"
__author__ = "MCP Office Tools"
__email__ = "contact@mcpofficetools.dev"
from .server import app
__all__ = ["app", "__version__"]