Metadata-Version: 2.4
Name: mcp-image-tools
Version: 1.0.0
Summary: Image processing tools for MCP — read, resize, crop, convert, return as base64
Project-URL: Homepage, https://mcp-tools.dev
Project-URL: Repository, https://github.com/cuber-it/mcp_tools
Author-email: Ulrich Cuber <sonstige@uc-it.de>
License-Expression: MIT
Keywords: image,mcp,tools
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Requires-Dist: mcp-server-framework>=1.4.0
Requires-Dist: pillow>=10.0.0
Description-Content-Type: text/markdown

        # mcp-image-tools

        Image processing tools for MCP — read, resize, crop, convert, return as base64

        Built on [mcp-server-framework](https://pypi.org/project/mcp-server-framework/).

        ## Installation

        ```bash
        pip install mcp-image-tools
        ```

        ## Usage

        ```bash
        mcp-image-tools    # stdio (default)
        ```

        ### Claude Code / Claude Desktop

        ```json
        {
          "mcpServers": {
            "image": { "command": "mcp-image-tools" }
          }
        }
        ```

        ## Tools

        | Tool | Description |
        |------|-------------|
        | `image_read_base64` | Read an image file and return as base64-encoded PNG |
| `image_resize` | Resize an image and return as base64-encoded PNG |
| `image_crop` | Crop a region from an image and return as base64-encoded PNG |
| `image_screenshot` | Take a desktop screenshot and return as base64-encoded PNG |
| `image_info` | Get image metadata (size, format, mode) |
| `image_convert` | Convert image format and return as base64 |

        ## License

        MIT — Part of [mcp_tools](https://github.com/cuber-it/mcp_tools)
