A Claude Skill that converts mixed-format files (documents, images, audio/video) into structured, template-based reports using a custom MCP server.
{
"mcpServers": {
"claude-skill-for-multimodal-report-generation": {
"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.
A Claude Skill that converts mixed-format files (documents, images, audio/video) into structured, template-based reports using a custom MCP server.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 55 days ago. 28 stars.
Will it work with my client?
Transport: stdio. 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.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
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