The first fully agentic Photoshop-class editing experience. External AI agents compose image edits through 60 MCP tools and submit proposals for human review.
Get your token from the editor: Account → MCP Connection.
1. Auth
POST /api/auth/refresh with your refresh token. Get a 15-min access token.
2. Initialize
POST /api/mcp — JSON-RPC "initialize". Returns a session ID header.
3. Discover
Call list_documents to see what the user has open in their browser.
4. Load
Call set_active_document with a document ID. Context is loaded from the DB.
5. Edit
Call editor tools: set_selection, fill, create_layer, set_opacity, etc.
6. Finish
Call finish with an interpretation explaining what you did and why.
7. Deliver
Call get_proposal. This deposits the proposal in the editor's inbox.
8. Review
The user sees the proposal in their browser with Accept / Reject buttons.
set_opacity, set_visibility, set_blend_mode, rename_node, reorder_node, create_layer, duplicate_layer, import_raster, add_text, set_text, group_layers, ungroup_layers, set_locked, set_mask_from_selection, clear_mask, merge_down, merge_group, merge_visible, flatten
set_selection, clear_selection, invert_selection, modify_selection, select_color_range
erase_selection, fill
set_adjustment, create_adjustment_layer
apply_filter
set_transform, set_crop, resize_canvas, resample_document, flip
trim_to_content
set_export_spec, delete_export_spec, apply_export_preset
make_cutout, make_favicon_package, uniform_asset
generate_image, request_image_edit, generative_expand
compare_revisions, get_history
list_variants, create_variant, create_variant_grid, switch_variant, compare_variants
describe_document, inspect_layer
apply_edit, ask_clarification, finish
list_documents, set_active_document, set_document_context, get_proposal
JSON-RPC 2.0 endpoint — 56 editor tools + 4 session tools. Requires Bearer JWT.
Discovery manifest with tools, workflow, and install command.
Skills, interfaces, and provider metadata.
Machine-readable REST API description.
LLM-readable summary of the tool surface and workflow.
Every tool with its description and parameters, generated from the registry.
One index of the MCP endpoint, its auth, the OpenAPI spec and these docs.
Discovery URLs for AI crawlers.