├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml └── workflows │ └── containers.yaml ├── .gitignore ├── Documentation ├── Best_Practices.md ├── HowToConfigure.md ├── HowToUse.md ├── Prompt_Examples.md └── img │ ├── image-1.png │ ├── image-2.png │ ├── image-3.png │ ├── image-4.png │ ├── image-5.png │ └── image.png ├── LICENSE.txt ├── LLM_Export ├── Example_docker-compose.yaml ├── docker │ ├── file_server │ │ ├── dockerfile.server │ │ └── file_export_server.py │ ├── mcpo │ │ ├── config.json │ │ ├── dockerfile │ │ ├── functions │ │ │ └── files_metadata_injector.py │ │ ├── requirements.txt │ │ ├── templates │ │ │ ├── Default_Template.docx │ │ │ ├── Default_Template.pptx │ │ │ └── Default_Template.xlsx │ │ └── tools │ │ │ ├── __init__.py │ │ │ └── file_export_mcp.py │ └── sse_http │ │ ├── config.json │ │ ├── dockerfile │ │ ├── functions │ │ └── files_metadata_injector.py │ │ ├── requirements.txt │ │ ├── templates │ │ ├── Default_Template.docx │ │ ├── Default_Template.pptx │ │ └── Default_Template.xlsx │ │ └── tools │ │ ├── __init__.py │ │ └── file_export_mcp.py ├── functions │ └── files_metadata_injector.py ├── requirements.txt ├── templates │ ├── Default_Template.docx │ ├── Default_Template.pptx │ └── Default_Template.xlsx └── tools │ ├── __init__.py │ ├── file_export_mcp.py │ └── file_export_server.py ├── README.md └── config.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/workflows/containers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/.github/workflows/containers.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/Best_Practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/Documentation/Best_Practices.md -------------------------------------------------------------------------------- /Documentation/HowToConfigure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/Documentation/HowToConfigure.md -------------------------------------------------------------------------------- /Documentation/HowToUse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/Documentation/HowToUse.md -------------------------------------------------------------------------------- /Documentation/Prompt_Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/Documentation/Prompt_Examples.md -------------------------------------------------------------------------------- /Documentation/img/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/Documentation/img/image-1.png -------------------------------------------------------------------------------- /Documentation/img/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/Documentation/img/image-2.png -------------------------------------------------------------------------------- /Documentation/img/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/Documentation/img/image-3.png -------------------------------------------------------------------------------- /Documentation/img/image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/Documentation/img/image-4.png -------------------------------------------------------------------------------- /Documentation/img/image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/Documentation/img/image-5.png -------------------------------------------------------------------------------- /Documentation/img/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/Documentation/img/image.png -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LLM_Export/Example_docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/Example_docker-compose.yaml -------------------------------------------------------------------------------- /LLM_Export/docker/file_server/dockerfile.server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/file_server/dockerfile.server -------------------------------------------------------------------------------- /LLM_Export/docker/file_server/file_export_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/file_server/file_export_server.py -------------------------------------------------------------------------------- /LLM_Export/docker/mcpo/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/mcpo/config.json -------------------------------------------------------------------------------- /LLM_Export/docker/mcpo/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/mcpo/dockerfile -------------------------------------------------------------------------------- /LLM_Export/docker/mcpo/functions/files_metadata_injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/mcpo/functions/files_metadata_injector.py -------------------------------------------------------------------------------- /LLM_Export/docker/mcpo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/mcpo/requirements.txt -------------------------------------------------------------------------------- /LLM_Export/docker/mcpo/templates/Default_Template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/mcpo/templates/Default_Template.docx -------------------------------------------------------------------------------- /LLM_Export/docker/mcpo/templates/Default_Template.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/mcpo/templates/Default_Template.pptx -------------------------------------------------------------------------------- /LLM_Export/docker/mcpo/templates/Default_Template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/mcpo/templates/Default_Template.xlsx -------------------------------------------------------------------------------- /LLM_Export/docker/mcpo/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LLM_Export/docker/mcpo/tools/file_export_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/mcpo/tools/file_export_mcp.py -------------------------------------------------------------------------------- /LLM_Export/docker/sse_http/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/sse_http/config.json -------------------------------------------------------------------------------- /LLM_Export/docker/sse_http/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/sse_http/dockerfile -------------------------------------------------------------------------------- /LLM_Export/docker/sse_http/functions/files_metadata_injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/sse_http/functions/files_metadata_injector.py -------------------------------------------------------------------------------- /LLM_Export/docker/sse_http/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/sse_http/requirements.txt -------------------------------------------------------------------------------- /LLM_Export/docker/sse_http/templates/Default_Template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/sse_http/templates/Default_Template.docx -------------------------------------------------------------------------------- /LLM_Export/docker/sse_http/templates/Default_Template.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/sse_http/templates/Default_Template.pptx -------------------------------------------------------------------------------- /LLM_Export/docker/sse_http/templates/Default_Template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/sse_http/templates/Default_Template.xlsx -------------------------------------------------------------------------------- /LLM_Export/docker/sse_http/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LLM_Export/docker/sse_http/tools/file_export_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/docker/sse_http/tools/file_export_mcp.py -------------------------------------------------------------------------------- /LLM_Export/functions/files_metadata_injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/functions/files_metadata_injector.py -------------------------------------------------------------------------------- /LLM_Export/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/requirements.txt -------------------------------------------------------------------------------- /LLM_Export/templates/Default_Template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/templates/Default_Template.docx -------------------------------------------------------------------------------- /LLM_Export/templates/Default_Template.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/templates/Default_Template.pptx -------------------------------------------------------------------------------- /LLM_Export/templates/Default_Template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/templates/Default_Template.xlsx -------------------------------------------------------------------------------- /LLM_Export/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LLM_Export/tools/file_export_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/tools/file_export_mcp.py -------------------------------------------------------------------------------- /LLM_Export/tools/file_export_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/LLM_Export/tools/file_export_server.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlisseManTV/MCPO-File-Generation-Tool/HEAD/config.json --------------------------------------------------------------------------------