# Image Tools - Background Removal, Upscaling & Face Restoration MCP server

Background removal, 4x upscaling, and face restoration via GPU

## Links
- Registry page: https://www.getdrio.com/mcp/io-github-fasuizu-br-image-tools
- Repository: https://github.com/fasuizu-br/speech-ai-examples
- Website: https://brainiall.com

## Install
- Endpoint: https://apim-ai-apis.azure-api.net/mcp/image/mcp
- Auth: Not captured

## Setup notes
- Remote endpoint: https://apim-ai-apis.azure-api.net/mcp/image/mcp

## Tools
- remove_background (Remove Background) - Remove the background from an image.

Uses BiRefNet segmentation to precisely separate foreground from background.
Returns a base64-encoded image with transparent background (PNG) or white
background (WebP). Sub-500ms latency on GPU.

Args:
    image_base64: Base64-encoded image data (PNG, JPEG, or WebP).
    output_format: Output format -- 'png' (with transparency) or 'webp'.

Returns:
    dict with keys:
        - image_base64 (str): Base64-encoded result image
        - format (str): Output image format
        - original_size (dict): Original width and height
        - processing_ms (int): Processing time in milliseconds Endpoint: https://apim-ai-apis.azure-api.net/mcp/image/mcp
- upscale_image (Upscale Image) - Upscale image resolution using Real-ESRGAN.

Enhances image resolution by 2x or 4x using GPU-accelerated Real-ESRGAN
super-resolution. Processes in tiles (256x256) to manage VRAM.
Maximum output dimension: 8192x8192.

Args:
    image_base64: Base64-encoded image data (PNG, JPEG, or WebP).
    scale: Upscale factor -- 2 or 4 (default: 4).

Returns:
    dict with keys:
        - image (str): Base64-encoded upscaled image
        - format (str): Output image format
        - width (int): Output width
        - height (int): Output height
        - scale (int): Scale factor applied
        - processing_time_ms (float): Processing time in milliseconds Endpoint: https://apim-ai-apis.azure-api.net/mcp/image/mcp
- restore_face (Restore Face) - Restore and enhance faces in an image using GFPGAN.

Detects all faces via RetinaFace, restores quality (fixes blur, noise,
compression artifacts), and pastes them back. Optionally enhances the
background using Real-ESRGAN. GPU-accelerated, sub-3s latency.

Args:
    image_base64: Base64-encoded image data containing faces (PNG, JPEG, WebP).
    upscale: Output upscale factor -- 1 to 4 (default: 2).
    enhance_background: Whether to enhance background with Real-ESRGAN (default: true).

Returns:
    dict with keys:
        - image (str): Base64-encoded restored image
        - format (str): Output image format
        - width (int): Output width
        - height (int): Output height
        - upscale (int): Scale factor applied
        - processing_time_ms (float): Processing time in milliseconds Endpoint: https://apim-ai-apis.azure-api.net/mcp/image/mcp
- check_image_service (Check Image Service) - Check health status of Image API services and loaded models.

Returns:
    dict with keys:
        - status (str): 'healthy' or error state
        - models (dict): Loaded model status per capability
        - version (str): API version Endpoint: https://apim-ai-apis.azure-api.net/mcp/image/mcp

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: io.github.fasuizu-br
- Version: 1.1.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Mar 5, 2026
- Source: https://registry.modelcontextprotocol.io
