Lightroom Mcp
БесплатноПоддерживаетсяMCP server bridging Claude/Codex/ChatGPT to Adobe Lightroom Classic via a Lua plugin.
Описание
MCP server bridging Claude/Codex/ChatGPT to Adobe Lightroom Classic via a Lua plugin.
README
Lets Claude (and other AI assistants) talk to your Adobe Lightroom Classic photo catalog. Search photos, set ratings, edit develop settings, manage collections, import/export — all by chatting.
Works with: Claude Desktop, Claude Code, Codex CLI, Cursor, Windsurf, VS Code. Needs: Lightroom Classic on macOS or Windows. Nothing else — no programming required. Other languages: 繁體中文
Install (Claude Desktop — easiest, 3 steps)
This is the recommended path. Takes ~2 minutes, no terminal needed.
1. Download the installer
Go to the latest release page and download the file ending in .mcpb (it's near the top, called lightroom-mcp-<version>.mcpb).
2. Double-click the downloaded file
Claude Desktop opens automatically and asks: "Install Lightroom Classic extension?". Click Install.
Don't have Claude Desktop yet? Get it free from claude.com/download. It runs on Mac and Windows.
3. Turn on the plugin in Lightroom
- Quit and reopen Lightroom Classic. (The plugin needs a restart to show up.)
- In Lightroom, click File in the menu bar → Plug-in Manager.
- In the left list, click Lightroom MCP.
- On the right, click the Start Server button.
- You should see "Server running" appear. Done!
Try it
Open Claude Desktop and type:
List all my Lightroom collections.
Claude will list every collection in your catalog.
Some other things to try:
- "Find all my 5-star photos from last summer."
- "Add the keyword 'portfolio' to the photos I have selected in Lightroom."
- "Apply the 'Vivid' develop preset to these photos."
- "Compare my approved 'John Warm v3' preset with the current candidate."
- "Create a versioned preset checkpoint from this representative photo and export it."
- "Export the selected photos to my Desktop as JPEGs at 2000px wide."
Install (other AI tools)
Already using Claude Code, Codex, Cursor, Windsurf, or VS Code? Pick your tool below. All paths still end with the Lightroom step from the section above — restart Lightroom and click Start Server in Plug-in Manager.
Claude Code
Same .mcpb file as Claude Desktop above — Claude Code accepts it too. Or install via the CLI:
claude mcp add lightroom -- npx -y @mskalski/lightroom-mcp
Codex CLI
codex mcp add lightroom -- npx -y @mskalski/lightroom-mcp
The Lightroom plugin installs itself the first time Codex talks to the server.
Cursor / Windsurf / VS Code (Continue, Cline, Roo, ...)
Open your client's MCP settings and add:
{
"mcpServers": {
"lightroom": {
"command": "npx",
"args": ["-y", "@mskalski/lightroom-mcp"]
}
}
}
The plugin installs itself the first time your client starts the server. If your client only starts the server on first tool call, you can install the plugin upfront:
npx -y @mskalski/lightroom-mcp install-plugin
No Node.js installed? Use the standalone binary
Download the right file from the latest release:
- Mac (Apple Silicon, M1/M2/M3/M4):
lightroom-mcp-darwin-arm64 - Mac (Intel):
lightroom-mcp-darwin-x64 - Windows:
lightroom-mcp-windows-x64.exe
- Mac (Apple Silicon, M1/M2/M3/M4):
macOS only — make it runnable and bypass Gatekeeper (the binary isn't signed):
chmod +x ~/Downloads/lightroom-mcp-darwin-arm64 xattr -d com.apple.quarantine ~/Downloads/lightroom-mcp-darwin-arm64Install the Lightroom plugin:
~/Downloads/lightroom-mcp-darwin-arm64 install-pluginPoint your AI tool at the binary's full path. Example for Codex:
codex mcp add lightroom -- /Users/you/Downloads/lightroom-mcp-darwin-arm64
Install the Lightroom plugin manually (any client)
If you'd rather drop the plugin in by hand:
- Download the matching zip from the latest release:
- Mac:
LightroomMCP-macos.lrplugin.zip - Windows:
LightroomMCP-windows.lrplugin.zip
- Mac:
- Unzip it. You get a folder called
LightroomMCP.lrplugin. - Move that folder into Lightroom's Modules folder:
- Mac:
~/Library/Application Support/Adobe/Lightroom/Modules/ - Windows:
%APPDATA%\Adobe\Lightroom\Modules\ - (If the
Modulesfolder doesn't exist, create it.)
- Mac:
- Restart Lightroom → Plug-in Manager → Start Server.
Something not working?
- Open Lightroom → File → Plug-in Manager → Lightroom MCP → Show Status. Both sockets should say
connected: true. If not, click Start Server. - Make sure you fully quit and reopened Lightroom after install (Cmd+Q on Mac, Alt+F4 on Windows). "Reload Plug-in" alone is not enough.
- See Troubleshooting below for specific errors.
Tools
| Tool | What it does |
|---|---|
search_photos |
Search by filename / keywords / rating / date range. |
get_selected_photos |
Photos selected in Lightroom (or filmstrip). |
get_photo_metadata |
EXIF, GPS, IPTC location, copyright + develop settings for one photo. |
list_collections |
All collections and collection sets. |
create_collection |
New collection (optional parent set). |
add_to_collection |
Add photos to a named collection. |
set_keywords |
Add or remove keywords on photos. |
set_rating |
Set 0-5 star rating on photos. |
import_photos |
Import a file or folder into the catalog. |
export_photos |
Export with format / quality / dimensions. |
list_develop_presets |
Discover Lightroom-visible presets and plugin checkpoints. |
get_develop_preset |
Read settings and backing-file metadata for one exact preset. |
compare_develop_presets |
Diff an approved historical preset against a candidate. |
create_develop_preset |
Capture explicit settings from a photo as a versioned plugin checkpoint. |
export_develop_preset |
Copy a custom/checkpoint preset backing file without overwriting. |
apply_develop_preset |
Apply an exact preset by UUID or disambiguated name. |
copy_develop_settings |
Copy develop settings between photos. |
set_develop_settings |
Write SDK setting key/values directly. |
Full schemas and parameter docs: server/src/list-tools-handler.ts.
Iterative preset workflow
Use a representative photo or virtual copy rather than a master edit:
- Read an approved historical preset with
get_develop_preset. - Apply bounded setting changes to the representative and export a Lightroom-rendered JPEG.
- Create a uniquely named checkpoint such as
John Warm v4withcreate_develop_preset. - Compare it with the approved preset using
compare_develop_presets. - Repeat the render/inspect cycle; export the accepted checkpoint with
export_develop_preset.
create_develop_preset uses Adobe's plugin preset API. These checkpoints are intentionally hidden from the Develop panel and are listed with scope: "plugin". They are versioned instead of overwritten. export_develop_preset refuses existing destinations and preserves the backing file format Lightroom supplies. Built-in presets without a backing file cannot be exported.
Point curves
set_develop_settings accepts Lightroom's composite and per-channel point curve
keys: ToneCurvePV2012, ToneCurvePV2012Red, ToneCurvePV2012Green, and
ToneCurvePV2012Blue. Each value is a flat list of 2 to 32 input/output pairs.
Values are integers from 0 to 255, inputs must be strictly increasing, and each
curve must start at input 0 and end at input 255.
{
"photo_id": "283615",
"settings": {
"ToneCurveName2012": "Custom",
"ToneCurvePV2012": [0, 0, 40, 25, 128, 132, 220, 240, 255, 250],
"ToneCurvePV2012Blue": [0, 0, 64, 58, 192, 198, 255, 255]
}
}
How it works
┌─────────────┐ stdio ┌──────────────────┐ TCP :58763 → ┌──────────────────┐
│ AI client │ ◄─────────► │ MCP server │ ──────────────► │ Lightroom plugin │
│ (Claude/ │ │ (Node TCP) │ ←────────────── │ (LrSocket) │
│ Codex/...) │ └──────────────────┘ ← TCP :58764 └──────────────────┘
└─────────────┘ │
▼
catalog:withReadAccessDo
Plugin binds two LrSocket servers on localhost (58763 request, 58764 response). Server connects as TCP client. Frame: line-delimited JSON, \n terminator. Auto-reconnect on both sides. Same dual-port pattern as MIDI2LR.
CLI reference
lightroom-mcp [stdio] Run MCP over stdio (default)
lightroom-mcp install-plugin Copy bundled plugin into Lightroom Modules folder
lightroom-mcp --help | --version
Env vars:
| Var | Default | Purpose |
|---|---|---|
LIGHTROOM_MCP_REQUEST_PORT |
58763 |
Plugin request port. |
LIGHTROOM_MCP_RESPONSE_PORT |
58764 |
Plugin response port. |
LIGHTROOM_MCP_TOKEN_PATH |
~/.config/lightroom-mcp/token |
Auth token file. |
If you change ports on the server side, change them in Plug-in Manager → Lightroom MCP to match.
Security
The plugin generates a 256-bit token in ~/.config/lightroom-mcp/token on Start Server. The MCP server attaches it to every request. Localhost-only — no remote attack surface.
Develop
mise install # tools (node, bun, lua + luarocks, selene)
mise run install # npm ci
mise run build # tsc
mise run test # jest
mise run mcpb # build .mcpb bundle
mise run binary # build single-file binaries via Bun
mise run lua:lint # selene-lint the Lua plugin
mise run lua:test # busted specs for the Lua plugin
Repo layout:
server/— TypeScript MCP server (ESM, NodeNext).plugin/LightroomMCP.lrplugin/— Lua plugin loaded by Lightroom Classic.mcpb/manifest.json—.mcpbbundle manifest.scripts/build-mcpb.mjs— pack the .mcpb.scripts/build-binary.mjs— Bun--compileper-target binaries.manual-test.mjs— direct TCP probe (bypasses MCP).
Adding a new tool
- Add a new
Handler*.luaunderplugin/LightroomMCP.lrplugin/. - Register it in the
DISPATCHtable inPluginInfoProvider.lua. - Add a contract entry in
server/src/tool-contracts.ts. - Declare any new LR globals in
lightroom.yml(selene std).
Troubleshooting
failed to open localhost:58763after Reload Plug-in — old async task still owns the port. Quit Lightroom (Cmd+Q on macOS / Alt+F4 on Windows) and reopen.- Plugin not connected — the server now self-restarts after a Reload Plug-in that tore down a running instance. If it's still stopped, click Start Server in Plug-in Manager; it reconnects within ~1s.
- Lightroom hangs on "performing shutdown tasks" when quitting, or warns that "a shutdown task for the plug-in became unresponsive" — fixed by removing the plugin's shutdown hooks.
LrShutdownApprequires the script to return a table whoseLrShutdownFunctioncalls Lightroom'sdoneFunction; without it Lightroom waits out a no-progress timeout on every quit, and even with it the shutdown dialog still costs about a second. The hooks bought nothing: Lightroom cancels the plugin's function context on quit, disable and reload, and that cleanup handler already closes both ports. Measured on macOS: 7.7 s with the hooks, 0.1 s without. If a future change needs work done at quit, re-registerLrShutdownAppand return that table. - Timeout errors — handler may be scanning a large catalog without filters; add
rating,filename,keywords, or date filters to narrow. - macOS "cannot be opened because the developer cannot be verified" (binary path) —
xattr -d com.apple.quarantine /path/to/binary. Or right-click → Open the first time. - Windows SmartScreen blocks the .exe — More info → Run anyway.
Logs:
| Component | macOS | Windows |
|---|---|---|
| Plugin | ~/Documents/LrClassicLogs/LightroomMCP.log |
%USERPROFILE%\Documents\LrClassicLogs\LightroomMCP.log |
| Claude Desktop | ~/Library/Logs/Claude/mcp*.log |
%APPDATA%\Claude\Logs\mcp*.log |
The plugin resolves its log path via the OS (LrPathUtils), so on Windows with
OneDrive-redirected Documents the file follows the redirect. The exact resolved
path is shown as Log file: in Plug-in Manager → Show Status — use that if
the table path above is empty.
License
MIT
Установить Lightroom Mcp в Claude Desktop, Claude Code, Cursor
unyly install lightroom-mcpСтавит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.
Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh
Или настроить вручную
Выполни в терминале:
claude mcp add lightroom-mcp -- npx -y @mskalski/lightroom-mcpПошаговые гайды: как установить Lightroom Mcp
FAQ
Lightroom Mcp MCP бесплатный?
Да, Lightroom Mcp MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Lightroom Mcp?
Нет, Lightroom Mcp работает без API-ключей и переменных окружения.
Lightroom Mcp — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Lightroom Mcp в Claude Desktop, Claude Code или Cursor?
Открой Lightroom Mcp на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Изменения
Версии и запрашиваемые доступы со временем.
- Новая версия опубликована
- Новая версия опубликована
- Новая версия опубликована
- Новая версия опубликована
- Новая версия опубликована
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
Roblox Studio
Enables AI coding tools to control Roblox Studio for workspace exploration, instance manipulation, and script management. It provides tools for playtesting, sce
автор: paralovOpencode Omniroute Plugin
OpenCode plugin for the OmniRoute AI Gateway. Drives dynamic model discovery, /connect auth flow, and multi-instance OmniRoute providers via the official @openc
автор: GitHub ActionsAWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzMCP-Agent
A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)
автор: lastmile-aiSpring AI MCP Client
Provides auto-configuration for MCP client functionality in Spring Boot applications.
mcp.natoma.ai
A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)
MCPHub
Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.
Compare Lightroom Mcp with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
