CSS Injection
- Direct filesystem reading of stylesheets
- Programmatic style injection via Puppeteer
- Relative path resolution for resources
Created a Model Context Protocol server in under an hour that gives Claude the ability to visually inspect HTML files it helps create, demonstrating rapid development of practical AI-augmentation tools.
When building web interfaces with AI assistance, a critical limitation emerged: Claude could write HTML and CSS but couldn't actually see the results. This disconnect between code creation and visual verification meant extra work for developers who needed to manually check and describe the output back to the AI. The solution? A custom Model Context Protocol (MCP) server that would give Claude "eyes" to inspect web pages directly.
What started as a simple idea turned into a powerful demonstration of rapid tool development. In under an hour, and for just $3.03 in API costs, we created a system that fundamentally enhanced Claude's ability to assist with web development. This isn't just a story about building a preview tool – it's about how quickly we can augment AI capabilities when we identify specific, practical needs.
The system architecture prioritizes simplicity and efficiency while maintaining robust functionality. By leveraging Puppeteer for headless browser control and integrating it with the MCP SDK, we created a seamless bridge between Claude's code analysis capabilities and visual inspection needs.
The heart of the system lies in its ability to handle local resources efficiently:
class PreviewServer {
private screenshotDir: string;
constructor() {
this.screenshotDir = path.join(__dirname, 'screenshots');
this.ensureDirectoryExists();
}
async previewFile(filePath: string): Promise {
const browser = await puppeteer.launch();
const page = await browser.newPage();
// Handle local file loading with proper path resolution
const absolutePath = path.resolve(filePath);
await page.goto(`file://${absolutePath}`);
// Ensure CSS is properly loaded
await this.injectStyles(page);
// Capture and save screenshot
const screenshotPath = await this.captureScreenshot(page);
await browser.close();
return {
screenshot: screenshotPath,
analysis: await this.analyzeStructure(filePath)
};
}
const configureEnvironment = (): void => {
// Handle ES module path resolution
const __dirname = path.dirname(fileURLToPath(import.meta.url));
// Set up screenshot directory
const screenshotDir = path.join(__dirname, 'screenshots');
fs.mkdirSync(screenshotDir, { recursive: true });
// Configure MCP server settings
process.env.MCP_SERVER_PORT = '3000';
};
The project is now available on GitHub, enabling others to:
The success of this rapid development project opens several exciting possibilities:
This project demonstrates how specific, well-defined problems can be solved quickly and cost-effectively when approached with the right tools and focus. In less time than a typical meeting and for less than the cost of a coffee, we created a tool that fundamentally enhances AI-assisted web development.
The success of this rapid development approach, combined with the decision to open source the solution, shows how individual solutions can become community resources.
Sometimes the most impactful tools aren't the ones that take months to build, but rather the focused solutions that address specific, immediate needs.