mcp-photo-edit
An installable MCP server for agent-driven photo editing with RawTherapee.
The server exposes a session-based editing workflow instead of raw sidecar manipulation.
Agents create an edit session, apply structured adjustments, regenerate previews when
needed, and export a final image. Installing mcp-photo-edit installs all Python runtime
dependencies automatically; users only need Python, an MCP client, and RawTherapee.
Each session now also maintains an explicit undo / redo timeline in session.json. Semantic edit history is tracked separately from preview-render history.
Examples
The demo photographs are original work and are not covered by the GPL license. Commercial use is prohibited.
Example: Fujifilm Style (v0.2.0)
Compare the baseline image with the two Fujifilm-style outputs below. Each thumbnail links to the full-size file. One with advanced image info and the other off.
Prompt:
Apply a Fujifilm camera like profile to
demo/cosplay.NEF. Apply a crop to focus on the center but keep the aspect ratio, export the result asdemo/fujifilm_style.jpg
| Before | Preview only | With diagnostics |
|---|---|---|
Model: gemini-3.1-pro-preview
Example: CCD Style (v0.2.0)
This example compares advanced image info-assisted runs using the same source image, prompt but different models.
Prompt:
Apply a 2000s CCD camera like profile to
demo/cosplay.NEF. Apply a crop to focus on the center but keep the aspect ratio, export the result as demo/ccd_style_gpt54_mini_medium.jpg
Main comparison:
| Baseline | Gemini 3 Flash | Gemini 3.1 Pro | GPT-5.4 (Medium) | GPT-5.4 Mini (Medium) |
|---|---|---|---|---|
Models: gemini-3-flash-preview, gemini-3.1-pro-preview, gpt-5.4 (medium), gpt-5.4-mini (medium)
Status
This is an MVP implementation.
Current focus:
- session-based editing flow
- structured adjustment schema
rawtherapee-clipreview and export- RAW and common raster inputs when supported by the local RawTherapee build
Not in scope:
- local masks
- healing / AI retouch
- full photo-editor feature coverage
- large preset libraries
- batch editing UX
Requirements
- Python 3.12+
uvfor the easiest install and run workflow, orpipx- RawTherapee with
rawtherapee-cliavailable onPATH, or an absolute executable path set inRAWTHERAPEE_CLI
Tested Environment
- OS: Windows 11 and Ubuntu 24.04 LTS
- RawTherapee: v5.12 on Windows; v5.10 on Ubuntu
Verify RawTherapee:
rawtherapee-cli -v
On Windows, if RawTherapee is installed but its directory is not on PATH, set the
absolute executable path before starting the MCP client:
$env:RAWTHERAPEE_CLI = "C:\Program Files\RawTherapee\5.12\rawtherapee-cli.exe"
Install
Run the published package without cloning this repository:
uvx mcp-photo-edit
uvx creates and caches an isolated environment. All Python dependencies are resolved
from the package metadata. To install the command persistently instead:
uv tool install mcp-photo-edit
Or use pipx:
pipx install mcp-photo-edit
After a persistent install, the executable is simply mcp-photo-edit.
MCP Quickstart
Example stdio configurations
Codex CLI
Add this block:
[mcp_servers.photo_edit]
command = "uvx"
args = ["mcp-photo-edit"]
[mcp_servers.photo_edit.env]
MCP_PHOTO_EDIT_WORKDIR = "/absolute/path/to/.mcp-photo-edit"
If you prefer to add it from the CLI instead of editing TOML manually:
codex mcp add photo-edit --env MCP_PHOTO_EDIT_WORKDIR=/absolute/path/to/.mcp-photo-edit -- uvx mcp-photo-edit
Verify the server is registered:
codex mcp list
Recommended AGENTS.md snippet for better tool selection:
Use the `photo-edit` MCP server for photo-editing tasks. Create an edit session first, iterate with previews, and export only when the preview looks correct.
Gemini CLI
Add this block:
{
"mcpServers": {
"photo-edit": {
"command": "uvx",
"args": ["mcp-photo-edit"],
"env": {
"MCP_PHOTO_EDIT_WORKDIR": "/absolute/path/to/.mcp-photo-edit"
},
"timeout": 30000,
"trust": true
}
}
}
Or add it from the CLI. This example writes to user config instead of project-local config:
gemini mcp add --scope user --transport stdio --env MCP_PHOTO_EDIT_WORKDIR=/absolute/path/to/.mcp-photo-edit --timeout 30000 --trust photo-edit uvx mcp-photo-edit
If you omit --scope user, Gemini CLI writes the MCP entry to project-local config by default.
Verify the configuration:
gemini mcp list
If Gemini shows the stdio server as disconnected, trust the current folder first:
gemini trust
Compatibility Note
RAW support depends on the local RawTherapee build and its bundled RAW decoders. A file extension being supported in principle does not guarantee that every camera or compression variant will decode on every machine. When diagnosing unsupported RAW files, check the installed RawTherapee version and the camera / compression mode used by the source file. For reference, this project is primarily developed and tested on the environment described in the Tested Environment section.
Note on Nikon RAW: Some compressed Nikon RAW formats (e.g., High Efficiency / HE* compression) may not be supported by the underlying libraries in current RawTherapee builds. If you encounter issues with Nikon files, try using uncompressed RAW or Lossless Compressed modes if available in-camera.
Advanced Image Info
The server can attach structured diagnostics to each preview:
preview_pathremains the primary image for aesthetic judgment.diagnostic_summaryadds machine-readable stats for exposure, balance, and saturation.- Set
DISABLE_ADVANCED_IMAGE_INFO=trueto turn the diagnostics off and keep the original preview-first workflow.
Available Tools
create_edit_sessionget_edit_sessionrender_previewapply_adjustmentsreset_adjustmentsundo_adjustmentredo_adjustmentexport_imagelist_supported_adjustments
render_preview regenerates the current session preview, appends a new preview artifact, and returns the latest preview_count.
undo_adjustment and redo_adjustment move the session cursor across committed edit states without creating new edit-history entries.
Typical Agent Workflow
- Create a session from an input image.
- Inspect the returned session state, including
preview_path,preview_history, current adjustment state, and history cursor fields such ashistory_index,history_length,can_undo, andcan_redo. - Apply one or more adjustments.
- Use
undo_adjustmentorredo_adjustmentwhen you need to move across committed edit steps. - Re-check the preview by calling
render_previewwhenever you want a fresh preview artifact and an explicitpreview_countfor the current step. - Export a final image explicitly.
See SKILL.md for an agent-facing usage guide.
Adjustment Model
The public API exposes a stable edit schema. It does not ask clients to hand-author backend profile files.
Current default-backend MVP adjustments:
exposurecontrastsaturationrgb_mixerdenoise_lumadenoise_detaildenoise_chromacolor_temperaturegreen_balancehighlightsshadowssharpen_amountsharpen_radiussharpen_contrastorientationcrop
Use list_supported_adjustments to discover exact ranges, defaults, and example payloads at runtime.
list_supported_adjustments is the source of truth for the installed renderer's runtime
capabilities.
Session History
session.jsonis the authoritative session timeline.historystores committed semantic edit steps.history_indexpoints to the current step.state.jsonis the current renderer-neutral service request state.render_previewappends preview artifacts but does not append semantic edit history.- Applying a new edit after undo truncates the redo tail.
Project Layout
src/mcp_photo_edit/
interfaces.py Backend protocols
backend.py Local file editing backend
models.py Pydantic schemas and validation
session.py Session lifecycle and persistence
server.py MCP tool registration
tests/
skills/
Development
Install dev dependencies:
uv sync --dev
Run tests:
uv run pytest
Start the server over stdio:
uv run mcp-photo-edit
This repository is self-contained for development. uv sync --dev resolves all declared
Python dependencies automatically.
Disclaimers
- This project invokes
rawtherapee-cli; it does not embed or redistribute RawTherapee internals. - Exact visual behavior depends on the local RawTherapee version, decoder support, ICC setup, and the input file.
- The server never modifies the original source image. It writes session artifacts and backend state files in a managed workspace.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_photo_edit-0.3.0.tar.gz.
File metadata
- Download URL: mcp_photo_edit-0.3.0.tar.gz
- Upload date:
- Size: 14.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5686fb338380083f67573f379a509fa433bdf182fe7d684153b04b9fcd3c2218
|
|
| MD5 |
9ca885d4429f7a93aa7b680bb83d28f3
|
|
| BLAKE2b-256 |
7baa1a5abb1cbedb24eb5d62b917e5402afb8c9e81f2aa10a0a3a746ab3cba1d
|
Provenance
The following attestation bundles were made for mcp_photo_edit-0.3.0.tar.gz:
Publisher:
publish.yml on joshua5201/mcp-photo-edit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_photo_edit-0.3.0.tar.gz -
Subject digest:
5686fb338380083f67573f379a509fa433bdf182fe7d684153b04b9fcd3c2218 - Sigstore transparency entry: 2342035229
- Sigstore integration time:
-
Permalink:
joshua5201/mcp-photo-edit@8732178b45b55e6bce8b0ad88f1024ac7f95c66c -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/joshua5201
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@8732178b45b55e6bce8b0ad88f1024ac7f95c66c -
Trigger Event:
release
-
Statement type:
File details
Details for the file mcp_photo_edit-0.3.0-py3-none-any.whl.
File metadata
- Download URL: mcp_photo_edit-0.3.0-py3-none-any.whl
- Upload date:
- Size: 43.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d4cdfe5e7559749de1dc13ebd5d55274e677519775474c2a1fe1afaa563dc4c
|
|
| MD5 |
8abc9d319bf9c901a350111c020e1e57
|
|
| BLAKE2b-256 |
028c90f4ea19f7df9683580bca440c97eccefe34bf742653b1587ac0a13091c8
|
Provenance
The following attestation bundles were made for mcp_photo_edit-0.3.0-py3-none-any.whl:
Publisher:
publish.yml on joshua5201/mcp-photo-edit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_photo_edit-0.3.0-py3-none-any.whl -
Subject digest:
6d4cdfe5e7559749de1dc13ebd5d55274e677519775474c2a1fe1afaa563dc4c - Sigstore transparency entry: 2342035240
- Sigstore integration time:
-
Permalink:
joshua5201/mcp-photo-edit@8732178b45b55e6bce8b0ad88f1024ac7f95c66c -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/joshua5201
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@8732178b45b55e6bce8b0ad88f1024ac7f95c66c -
Trigger Event:
release
-
Statement type: