multimodal-reader-mcp
README.md
# multimodal-reader-mcp
MCP server for reading local audio and video files with Google Gen AI and returning structured observations, timelines, and transcripts.
It analyzes a local media file and returns:
- a short summary
- a timeline of key moments
- transcript snippets for spoken or visible text
- key observations and notable signals
- relevant clues tailored to the user's question
- open questions plus a confidence level
## Requirements
- `uv`
- Python `3.14`
- `GOOGLE_API_KEY`
## Model configuration
The default model is `gemini-2.5-flash`.
You can override the default model for all requests by setting:
- `MULTIMODAL_READER_MODEL`
## MCP client configuration
Example Cursor MCP config:
```json
{
"mcpServers": {
"multimodal-reader": {
"command": "uvx",
"args": ["multimodal-reader-mcp"],
"env": {
"GOOGLE_API_KEY": "${env:GOOGLE_API_KEY}",
"MULTIMODAL_READER_MODEL": "gemini-2.5-flash"
}
}
}
}
```
## Tool
The package exposes one MCP tool:
- `read_media(file_path, question=None)`
`file_path` must be an absolute path to a local media file.
TDQS
B3.4/5.0
Scored across 1 tool
Disambiguation5/5
Only one tool exists, so there is no possibility of confusing it with another. The tool's purpose is clearly described as reading local audio/video files.
Naming Consistency5/5
The single tool name 'read_media' follows a consistent verb_noun pattern, though with only one tool, consistency is trivially satisfied.
Tool Count2/5
A single tool feels too thin for a server claiming to be 'multimodal.' The name implies broader media coverage, but only one generic reading operation is provided, which is too few for the apparent scope.
Completeness2/5
The tool only supports audio and video, leaving out images and other media types that multimodal implies. There are also no supporting operations like format listing or metadata retrieval, creating significant gaps for a reader.
Maintenance
ActivityInactive
ResponsivenessNo issues