Smart Reader MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Smart Reader MCPRead the PDF at ~/Downloads/invoice.pdf"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Smart Reader MCP
One MCP call reads PDF, image, or video by sniffing format and delegating to Sylphx Reader siblings.
Status: v0.1.0 — read_media ships with format sniffing, sibling delegation, and provenance envelope.
Portfolio architecture (orchestration only): ADR-0002.
Repository | Role |
PDF (production) | |
Image | |
Video | |
smart-reader-mcp (this repo) | Sniff format + delegate; phase 2 adds universal local/remote paths here |
Read vs interpret
Read (this repo): extract facts, metadata, transcripts, regions, and timelines with provenance — no generative LLM required.
Interpret (out of scope): summarize, classify, or answer open questions — belongs in the agent or an optional remote provider adapter.
Related MCP server: Docalyze
MCP surface (v0.1.0)
read_media
Reads a local file by sniffing magic bytes and extension, then delegates to the matching Sylphx Reader sibling MCP server.
Input
{
"path": "/absolute/or/relative/path/to/media.pdf"
}Supported formats
PDF:
.pdfImage:
.png,.jpg,.jpeg,.gif,.webp,.tif,.tiffVideo:
.mp4,.m4v,.mkv,.mov,.webm
Response envelope
Every successful call returns a normalized envelope with provenance:
{
"source_path": "/path/to/media.pdf",
"detected_format": "pdf",
"delegated_tool": "read_pdf",
"raw_result": {}
}source_path— resolved absolute path that was readdetected_format— sniffed format (magic bytes first, extension fallback)delegated_tool— sibling tool invoked (read_pdf,read_image, orread_video)raw_result— passthrough result from the delegated reader
Delegation model
Smart Reader does not parse PDF/image/video itself. It spawns a stdio MCP client to the matching sibling package:
Resolve a locally installed sibling (
@sylphx/pdf-reader-mcp, etc.) vianode <package-bin>Fall back to
npx -y @sylphx/<reader>-mcpwhen the package is not installed locallyReturn an informative install hint if delegation fails
Install the readers you need:
npm install @sylphx/pdf-reader-mcp
npm install @sylphx/image-reader-mcp
npm install @sylphx/video-reader-mcpQuick start
git clone https://github.com/SylphxAI/smart-reader-mcp.git
cd smart-reader-mcp
bun install
bun run build
npx @sylphx/smart-reader-mcpMCP client config (stdio)
{
"mcpServers": {
"smart-reader": {
"command": "npx",
"args": ["-y", "@sylphx/smart-reader-mcp"]
}
}
}Development
bun install
bun run validateLicense
MIT © SylphxAI
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SylphxAI/smart-reader-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server