mcp-file-preview
MCP server for HTML file preview and analysis - Has been weird with OS but good on Cline so WIP
Documentation
MCP File Preview Server
A Model Context Protocol (MCP) server that provides HTML file preview and analysis capabilities. This server enables capturing full-page screenshots of local HTML files and analyzing their structure.
Features
- File Preview: Capture full-page screenshots of HTML files with proper CSS styling
- Content Analysis: Analyze HTML structure (headings, paragraphs, images, links)
- Local File Support: Handle local file paths and resources
- Screenshot Management: Save screenshots to a dedicated directory
Installation
1. Clone the repository:
git clone https://github.com/your-username/mcp-file-preview.git
cd mcp-file-preview2. Install dependencies:
npm install3. Build the project:
npm run buildConfiguration
Add the server to your Claude or Cline MCP settings:
Claude Desktop App
Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
{
"mcpServers": {
"file-preview": {
"command": "node",
"args": ["/path/to/mcp-file-preview/build/index.js"]
}
}
}Cline VSCode Extension
Add to VSCode's MCP settings:
{
"mcpServers": {
"file-preview": {
"command": "node",
"args": ["/path/to/mcp-file-preview/build/index.js"]
}
}
}Usage
The server provides two main tools:
preview_file
Captures a screenshot and returns HTML content:
file-preview
preview_file
{
"filePath": "/path/to/file.html",
"width": 1024, // optional
"height": 768 // optional
}Screenshots are saved to `screenshots/` directory in the project folder.
analyze_content
Analyzes HTML structure:
file-preview
analyze_content
{
"filePath": "/path/to/file.html"
}Returns counts of:
- Headings
- Paragraphs
- Images
- Links
Development
1. Install dependencies:
npm install @modelcontextprotocol/sdk puppeteer typescript @types/node @types/puppeteer2. Make changes in `src/`
3. Build:
npm run build4. Test locally:
npm run devImplementation Details
The server uses the MCP SDK's Server class with proper initialization:
this.server = new Server(
// Metadata object
{
name: 'file-preview-server',
version: '0.1.0'
},
// Options object with capabilities
{
capabilities: {
tools: {
preview_file: {
description: 'Preview local HTML file and capture screenshot',
inputSchema: {
// ... schema definition
}
}
}
}
}
);Key points:
- Server constructor takes separate metadata and options objects
- Tools are declared in capabilities.tools
- Each tool needs a description and inputSchema
- Screenshots are saved to a local `screenshots/` directory
Debugging
1. Use the MCP Inspector:
npx @modelcontextprotocol/inspector2. Connect with:
3. Check Claude OS logs if tools don't appear in the dropdown
Contributing
Please read CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Frequently asked questions
What is mcp-file-preview?
mcp-file-preview is MCP server for HTML file preview and analysis - Has been weird with OS but good on Cline so WIP
How do I install mcp-file-preview?
Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.
Is mcp-file-preview open source?
Yes — it is hosted on GitHub at https://github.com/seanivore/mcp-file-preview and has 22 stars.
Related MCP tools
CTTF: MCP integration between Cursor and Figma, allowing Cursor Agentic AI to communicate with Figma for reading designs and modifying them programmatically.
The all-in-one Desktop & Docker AI application with built-in RAG, AI agents, No-code agent builder, MCP compatibility, and more.
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients. JavaScript-based implementation.
This is MCP server for Claude that gives it terminal control, file system search and diff file editing capabilities JavaScript-based implementation.
Shrimp Task Manager is a task tool built for AI Agents, emphasizing chain-of-thought, reflection, and style consistency.
MCP server for interfacing with Godot game engine. Provides tools for launching the editor, running projects, and capturing debug output.
Run your own MCP server? See who uses it and what to fix.
Measure it with TrackMCP