A Claude Skill that converts mixed-format files (documents, images, audio/video) into structured, template-based reports using a custom MCP server.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"claude-skill-for-multimodal-report-generation": {
"args": [
"mcp"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Claude Code skill and MCP server for converting scattered meeting materials into structured Word documents.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
Model Context Protocol (MCP) Python SDK does not enable DNS rebinding protection by default
### Description The Model Context Protocol (MCP) Python SDK does not enable DNS rebinding protection by default for HTTP-based servers. When an HTTP-based MCP server is run on localhost without authentication using `FastMCP` with streamable HTTP or SSE transport, and has not configured `TransportSecuritySettings`, a malicious website could exploit DNS rebinding to bypass same-origin policy restrictions and send requests to the local MCP server. This could allow an attacker to invoke tools or ac
MCP Python SDK vulnerability in the FastMCP Server causes validation error, leading to DoS
A validation error in the MCP SDK can cause an unhandled exception when processing malformed requests, resulting in service unavailability (500 errors) until manually restarted. Impact may vary depending on the deployment conditions, and presence of infrastructure-level resilience measures. Thank you to Rich Harang for reporting this issue.
MCP Python SDK has Unhandled Exception in Streamable HTTP Transport, Leading to Denial of Service
If a client deliberately triggers an exception after establishing a streamable HTTP session, this can lead to an uncaught ClosedResourceError on the server side, causing the server to crash and requiring a restart to restore service. Impact may vary depending on the deployment conditions, and presence of infrastructure-level resilience measures. Thank you to Rich Harang for reporting this issue.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in writing
A markdown editor — and the bridge to your LLM. Local-first, MIT, ~15 MB. Bundled MCP server lets Claude Code / Codex / Cursor drive your vault directly. 14 AI providers BYOK.
f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.
Define task-specific AI sub-agents in Markdown for any MCP-compatible tool.
一键同步文章到多个内容平台,支持今日头条、WordPress、知乎、简书、掘金、CSDN、typecho各大平台,一次发布,多平台同步发布。解放个人生产力
MCP Security Weekly
Get CVE alerts and security updates for Claude Skill For Multimodal Report Generation and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Claude Code skill and MCP server for converting scattered meeting materials into structured Word documents.
For a detailed explanation of the design and development of this code, see the related article on Data Science Collective.
This project provides an automated pipeline for transforming various inputs (audio recordings, handwritten notes, diagrams, digital notes, and supplementary documents) into a single, well-formatted Microsoft Word deliverable.

document-processing-skill/
├── documenting-meetings/ # Claude skill for meeting documentation
│ ├── SKILL.md # Main skill specification and workflow
│ ├── EVALUATION.md # Test evaluation prompts and criteria
│ └── reference/
│ ├── INPUT_FORMATS.md # Detailed input file handling guide
│ └── OUTPUT_SECTIONS.md # Output section specification
├── transcription-MCP/ # MCP server for audio/video transcription
│ ├── server.py # FastMCP server implementation
│ └── .env # Environment configuration (requires setup)
└── sample_data/ # Example data for testing
├── input_documents/ # Meeting materials (audio, images, docs, notes)
├── templates/ # Blank template documents
└── sample_documents/ # Sample output documents for formatting reference
documenting-meetingsA Claude Code skill that orchestrates the entire meeting documentation workflow.
Trigger Keywords: meeting notes, meeting summary, meeting minutes, meeting documentation, action items from meeting
Supported Input Formats:
| Category | File Types |
|---|---|
| Audio/Video | .mp3, .m4a, .wav, .ogg, .flac, .mp4, .mov, .avi, .mkv, .webm |
| Images | .jpg, .png, .gif, .webp, .bmp, .tiff, .heic |
| Digital Notes | .txt, .md, .rtf, .html |
| Supplementary | .pdf, .pptx, .xlsx, .docx |
Workflow:
Default Output Structure:
Sections are omitted if no relevant information exists.
transcription-MCPA FastMCP server providing audio/video transcription capabilities using the GAIK transcriber library and OpenAI API.
Tool Exposed:
transcribe_audio(file_path: str, enhanced: bool = False) -> str
Parameters:
file_path (required): Full path to audio/video fileenhanced (optional): Return enhanced transcript if TrueReturns: Raw transcription text preserving original flow and structure.
Navigate to the transcription-MCP folder:
cd transcription-MCP
Create/update the .env file with your OpenAI API key:
OPENAI_API_KEY=your_openai_api_key
OPENAI_API_TYPE=openai
Install dependencies:
pip install mcp python-dotenv gaik
Register the MCP server in your Claude Code configuration.
documenting-meetings folder to your Claude Cod