Tiles large images and captures full web pages for detailed LLM vision without downscaling.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag โ we're steadily working through the catalog.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Image Tiler MCP Server.
MCP server that gives LLMs full-resolution vision by tiling large images and capturing full web pages before details are lost to automatic downscaling.
The server generates an interactive HTML preview for every image, showing per-model tile grids and token estimates
Visual QA for web pages. Capture a URL, tile it, and let the LLM spot misaligned elements, wrong colors, and broken layouts at full resolution. Fix the code, re-capture, and verify the fix visually.
Mobile responsive testing. Capture at any viewport width with mobile emulation, retina scaling, and a real mobile user agent. The LLM reviews the full mobile layout tile by tile, catching responsive breakpoint issues that only appear on small screens.
Full-resolution image analysis. Diagrams, infographics, and design mockups lose critical details when LLMs downscale them. A 3,600 x 20,220px full-page capture that Claude would crush to ~279 x 1,568 becomes 76 analyzable tiles, each at native resolution.
Token-efficient tile inspection. Each tile gets entropy-based content classification: blank, low-detail, mixed, or high-detail. The LLM skips blank tiles entirely and focuses tokens on what matters.
Iterative visual workflow. Capture, analyze, fix, re-capture. Versioned output directories (_v1, _v2, ...) preserve each iteration so you can compare before and after without overwriting previous results.
image-tileris a local alias. You can name it anything you like.image-tiler-mcp-serveris the npm package that gets downloaded and run.
See Claude Code MCP docs for more info.
Or add to ~/.codex/config.toml:
Add to your VS Code MCP settings:
Add to ~/.cursor/mcp.json:
Add to your Claude Desktop config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.jsonRestart Claude Desktop after editing.
Then use the simpler config in any client:
Then point your MCP config to the built file:
Build the image:
The image includes Chromium for URL capture. Chrome's --no-sandbox flag is enabled by default in the image because Docker containers don't provide the user namespaces that Chrome's sandbox requires. The container itself provides process isolation. To re-enable the sandbox (e.g. with --privileged or user-namespace support), pass -e CHROME_NO_SANDBOX=0.
The -i flag is required (stdio transport). Mount a volume for any directories the server needs to read from or write to, and set TILER_ALLOWED_DIRS to restrict file access to those mounts.
To disable URL capture entirely (no Chrome, no network access):
tile ~/source.png and analyze content
The server reads image dimensions and generates an interactive HTML preview with per-model tabs showing grid overlays, tile counts, and token estimates. Pick the model that matches your use case, and the server tiles and returns batches for analysis.
capture full page screenshot of https://tomotv.app
The server launches headless Chrome, scrolls through the page to trigger lazy-loaded images (loading="lazy"), then captures a full-page screenshot (scroll-stitching pages over 16,384px). Your assistant receives each section at full resolution and can identify layout issues, misaligned elements, or broken styling that downscaling would hide.
To get only the screenshot without tiling, just ask for a screenshot and stop after the comparison step.
capture https://tomotv.app in mobile view
This is responsive QA, not just a different viewport. The server captures with mobile: true, which sets a 390px viewport, 2x retina scale, and a mobile Safari user agent. Sites that check for mobile UA or touch capability serve their mobile layout, so the LLM reviews exactly what a real phone user sees.
| What | Example prompt |
|---|---|
| Target a specific model | "Tile hero.png for OpenAI" |
| Keep full resolution | "Tile banner.png at full resolution, no downscaling" |
| PNG output | "Tile diagram.png as lossless PNG" |
| Tile from URL | "Download and tile https://keiver.dev/source.png" |
| Tile from base64 | "Tile this base64 image: iVBORw0KGgo..." |
| Preset | Default tile | Tokens/tile | Max tile | ID |
|---|---|---|---|---|
| Claude | 1092px | 1590 | 1568px | claude |
| OpenAI (GPT-4o/o-series) | 768px | 765 | 2048px | openai |
| Gemini | 768px | 258 | 768px | gemini |
| Gemini 3 | 1536px | 1120 | 3072px | gemini3 |
OpenAI note: The
openaiconfig targets the GPT-4o / o-series vision pipeline (512px tile patches). GPT-4.1 uses a fundamentally different pipeline (32x32 pixel patches) and is not currently supported. It would require a separate model config with a different calculation approach.
Gemini 3 note: Gemini 3 uses a fixed token budget per image (1,120 tokens regardless of dimensions). Tiling increases total token cost but preserves fine detail. For cases where detail isn't critical, consider sending a single image instead.
You screenshot a full page, paste it into Claude, and Claude crushes it to a thumbnail. Any image with a long edge over 1,568 pixels gets auto-downscaled to fit within ~1.15 megapixels. A 3,600 x 20,220px full-page capture becomes ~279 x 1,568, losing over 99% of its pixels before the model even sees it.
GPT-4o is more forgiving but still destructive: it scales your image to fit within 2,048px, then scales the shortest side down to 768px, then tiles internally. An 8,192px-wide NASA panorama becomes ~1,456 x 768 before GPT-4o's own tiling even begins.
Gemini 1.5/2.0 handles large images natively at 768px tiles without downscaling. Gemini 3, however, caps each image at a fixed token budget (1,120 tokens) regardless of size. Tiling gives each piece its own budget.
Each tile stays within the model's sweet spot, so the LLM processes it at full resolution.
Using assets/portrait.png (3,600 x 20,220, a full-page National Geographic capture) as an example:
| Model | What happens | Impact |
|---|---|---|
| Claude | Auto-downscaled to ~279 x 1,568 | ~0.6% of original pixels survive |
| GPT-4o | Downscaled to ~365 x 2,048, then internally tiled | ~1% of original pixels survive the downscale |
| Gemini 3 | Capped at 1,120 tokens per image (default) | Fixed token budget regardless of image size |
Gemini 1.5/2.0 tiles large images natively at 768px without downscaling. For Gemini 3, tiling multiplies the total token budget by sending each tile as a separate image.
| Model | Tiles | Result |
|---|---|---|
| Claude | 76 tiles at 1,092px | Every tile within 1,568px sweet spot, no downscaling |
| GPT-4o | 135 tiles at 768px | Every tile under 2,048px, no pre-downscale needed |
| Gemini 3 | 42 tiles at 1,536px | Each tile gets its own 1,120-token budget |
Using assets/landscape.png (8,192 x 4,320, NASA image gallery):
Factual signals from GitHub, npm, and our automated checks โ not a rating.
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/keiver-image-tiler-mcp-server)<a href="https://allmcps.com/mcp/keiver-image-tiler-mcp-server"><img src="https://allmcps.com/api/badge/keiver-image-tiler-mcp-server?style=directory" alt="Image Tiler MCP Server on AllMCPs" /></a>