GenFilesMCP: Minimal MCP Server for Open Web UI. Generates PPTX, XLSX, DOCX or MD files using user requests and full chat context. *Pull Requests are welcome ๐! Please make sure they are always submitted against the dev branch ๐ง
{
"mcpServers": {
"genfilesmcp": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
GenFilesMCP: Minimal MCP Server for Open Web UI. Generates PPTX, XLSX, DOCX or MD files using user requests and full chat context. *Pull Requests are welcome ๐! Please make sure they are always submitted against the dev branch ๐ง
Is it safe?
No package registry to scan.
No authentication โ any process on your machine can connect.
MIT. View license โ
Is it maintained?
Last commit 6 days ago. 75 stars.
Will it work with my client?
Transport: stdio, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience โ it helps other developers decide.
Sign in to write a review.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
An open-source AI agent that brings the power of Gemini directly into your terminal.
The full-stack TypeScript framework to build, test, and deploy production-ready MCP servers and AI-native apps.
Open-source persistent memory for AI agent pipelines (LangGraph, CrewAI, AutoGen) and Claude. REST API + knowledge graph + autonomous consolidation.
MCP Security Weekly
Get CVE alerts and security updates for GenFilesMCP and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
GenFiles is an MCP Server that generates PowerPoint, Excel, Word, or Markdown files from user requests and chat context. This server executes Python templates or structured document builders to produce files, uploads them to an Open Web UI (OWUI) endpoint, and can persist them in Open WebUI knowledge collections depending on the selected transport and configuration. Additionally, it supports analyzing and reviewing existing Word documents by extracting their structure and adding comments for corrections, grammar suggestions, or idea enhancements.
Chat Context Tool for retrieving docx files and images uploaded in the chat for use in generation or review.๐จ Please follow the installation instructions step by step to avoid errors.
To quickly get started, you can use the pre-built Docker image:
docker pull ghcr.io/baronco/genfilesmcp:v0.3.0
Run the container:
docker run -d --restart unless-stopped -p 8016:8016 \
-e OWUI_URL="http://host.docker.internal:3000" \
-e PORT=8016 \
-e REVIEWER_AI_ASSISTANT_NAME="GenFilesMCP" \
-e ENABLE_CREATE_KNOWLEDGE=false \
--name gen_files_mcp \
ghcr.io/baronco/genfilesmcp:v0.3.0
Or copy and paste this one-liner:
docker run -d --restart unless-stopped -p 8016:8016 -e OWUI_URL="http://host.docker.internal:3000" -e PORT=8016 -e REVIEWER_AI_ASSISTANT_NAME="GenFilesMCP" -e ENABLE_CREATE_KNOWLEDGE=false --name gen_files_mcp ghcr.io/baronco/genfilesmcp:v0.3.0
| Variable | Description | Example |
|------------------------------|-----------------------------------------------------------------------------|-----------------------------------------|
| OWUI_URL | URL of your Open Web UI instance | http://host.docker.internal:3000 |
| PORT | Port where the MCP Server will listen | 8016 |
| MCP_TRANSPORT | MCP transport used at startup. Use streamable-http for direct HTTP deployments such as Open WebUI external tools, or stdio when the server is launched by MCPO or another stdio-capable MCP client. | streamable-http |
| OWUI_API_KEY | API key used only for stdio deployments through MCPO, where Open WebUI cannot forward the active user's bearer token through the Open WebUI -> MCPO -> stdio MCP chain. Do not use it for direct streamable-http deployments. | sk-017374a.... |
| KNOWLEDGE_COLLECTION_NAME | Name of the Open WebUI knowledge collection used for generated and reviewed files when ENABLE_CREATE_KNOWLEDGE=true. | My Generated Files |
| REVIEWER_AI_ASSISTANT_NAME | Author name used inside Word comments created by review_docx. | GenFilesMCP |
| ENABLE_CREATE_KNOWLEDGE | Controls whether generated or reviewed files are attached to Open WebUI knowledge collections. In direct streamable-http mode this is optional. In stdio through MCPO it must be true. | false