tag:github.com,2008:https://github.com/code4history/IIIF_MCP/releases
Release notes from IIIF_MCP
2025-07-19T13:26:29Z
tag:github.com,2008:Repository/1022357255/v1.1.0
2025-07-19T13:29:05Z
v1.1.0 - Image Fetching and Canvas Tools
<h2>What's New in v1.1.0</h2>
<h3>🎨 New Tools</h3>
<h4>iiif-image-fetch</h4>
<ul>
<li>Fetch actual IIIF image data with automatic size constraints</li>
<li>Returns Base64-encoded images for LLM consumption</li>
<li>Supports all IIIF Image API parameters (region, size, rotation, quality, format)</li>
<li>Automatic scaling to max 1500px dimension or 1M pixels</li>
</ul>
<h4>iiif-manifest-canvases</h4>
<ul>
<li>List all canvases within a IIIF manifest</li>
<li>Filter by image presence, annotations, or label patterns</li>
<li>Optional metadata and thumbnail inclusion</li>
</ul>
<h4>iiif-canvas-info</h4>
<ul>
<li>Get detailed information about specific canvases</li>
<li>Support for multiple images per canvas</li>
<li>Annotation details with language support</li>
<li>Optional Image API info.json fetching</li>
</ul>
<h3>📦 Single-file Bundle Distribution</h3>
<ul>
<li>New <code>iiif-mcp-bundle.js</code> for easy deployment (no npm install required)</li>
<li>Windows-compatible (removed Unix shebang)</li>
<li>Bundle size: ~2.7MB including all dependencies</li>
</ul>
<h3>🔧 Installation Options</h3>
<h4>Standard Installation:</h4>
<p>```bash<br>
npm install<br>
npm run build<br>
```</p>
<h4>Bundle Usage (NEW):</h4>
<p>Download <code>iiif-mcp-bundle.js</code> from the release assets and run directly with Node.js.</p>
<h3>📋 Claude Desktop Configuration</h3>
<h4>Using Bundle:</h4>
<p>```json<br>
{<br>
"mcpServers": {<br>
"iiif": {<br>
"command": "node",<br>
"args": ["C:\\path\\to\\iiif-mcp-bundle.js"]<br>
}<br>
}<br>
}<br>
```</p>
<h3>🐛 Bug Fixes</h3>
<ul>
<li>Fixed parameter passing issues in MCP handlers</li>
<li>Removed test-echo tool</li>
<li>Fixed TypeScript type errors</li>
</ul>
<h3>📚 Documentation</h3>
<ul>
<li>Updated README with v1.1.0 features</li>
<li>Added CHANGELOG.md</li>
<li>Created comprehensive bundling guide</li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/code4history/IIIF_MCP/compare/v1.0.1...v1.1.0"><tt>v1.0.1...v1.1.0</tt></a></p>
kochizufan