Pixelpanda MCP Server

AI image processing tools for Claude Desktop, Cursor, VS Code, and other MCP-compatible clients.

Local serverstdio

What is the Pixelpanda MCP MCP server?

Most developer tooling work still happens through a UI a human drives. Pixelpanda MCP MCP server moves it into the conversation instead. AI image processing tools for Claude Desktop, Cursor, VS Code, and other MCP-compatible clients.

Getting it running

The server ships on PyPI as pixelpanda-mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

The tools it exposes

The server publishes 14 tools. What each one is for:

  • resize_image — Resize with optional aspect ratio preservation
  • crop_image — Crop to specific pixel coordinates
  • rotate_image — Rotate by any degree
  • flip_image — Flip horizontal or vertical
  • grayscale_image — Convert to grayscale
  • invert_image — Invert colors (negative)
  • round_corners — Round corners with custom radius
  • add_border — Add solid color border
  • compress_image — Compress to JPEG/WebP with quality control
  • merge_images — Merge multiple images (horizontal/vertical/grid)
  • convert_format — Convert between PNG, JPEG, WebP, BMP, TIFF
  • make_transparent — Adjust image opacity

What it needs from you

Configuration is passed through the environment: PIXELPANDA_API_TOKEN, PIXELPANDA_API_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Pixelpanda MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Pixelpanda MCP's toolset — resize_image, crop_image, rotate_image and 11 more — is a fair guide to whether it matches your workflow. It is maintained by ryankramer; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
resize_imageResize with optional aspect ratio preservation
crop_imageCrop to specific pixel coordinates
rotate_imageRotate by any degree
flip_imageFlip horizontal or vertical
grayscale_imageConvert to grayscale
invert_imageInvert colors (negative)
round_cornersRound corners with custom radius
add_borderAdd solid color border
compress_imageCompress to JPEG/WebP with quality control
merge_imagesMerge multiple images (horizontal/vertical/grid)
convert_formatConvert between PNG, JPEG, WebP, BMP, TIFF
make_transparentAdjust image opacity
create_profile_pictureCircle/square/rounded profile picture
blur_imageGaussian blur

How to install the Pixelpanda MCP MCP server

{
  "mcpServers": {
    "pixelpanda": {
      "command": "uvx",
      "args": ["pixelpanda-mcp"],
      "env": {
        "PIXELPANDA_API_TOKEN": "your-value",
        "PIXELPANDA_API_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
PIXELPANDA_API_TOKENCredential the server authenticates with.Yes
PIXELPANDA_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Pixelpanda MCP to resize image.
  • Use Pixelpanda MCP to crop image.
  • Use Pixelpanda MCP to rotate image.

Frequently asked questions

It connects Pixelpanda MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (resize_image, crop_image, rotate_image, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Pixelpanda MCP directly.