The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Immopix listing page.
Immopix is an AI photo service for real estate listings. It improves listing photos: it replaces a grey sky, removes clutter, adds furniture to an empty room and adjusts the season of a garden shot. The customers are estate agents in Germany and, in English, elsewhere in Europe.
The Immopix connector is a remote MCP server at https://immopix.ai/mcp. It links an Immopix
account to Claude, ChatGPT and other assistants that support MCP connectors, so the agent can work
with the properties and photos that account already holds.
This repository holds the distribution metadata and the client examples for that connector. The hosted server itself is closed source, and none of its code is published here.
The server publishes thirteen tools. Grouped by what a user asks for, they cover:
| Tool | Scope | Purpose |
|---|---|---|
immopix_list_properties | read | List properties, newest first, with an optional name filter |
immopix_get_property | read | Read one property |
immopix_list_property_photos | read | List the photos of a property |
immopix_get_photo | read | Read one photo, its revisions and the cost of the next enhancement |
immopix_check_job | read | Read the status of an enhancement job and its result link |
immopix_list_presets | read | List the presets, room types and furniture styles |
immopix_get_account | read | Read the remaining credit balance |
immopix_get_upload_link | write | Return the browser upload link for a property |
immopix_create_property | write | Create a property |
immopix_update_property | write | Rename a property |
immopix_delete_property | write | Delete a property and its photos |
immopix_delete_photo | write | Delete a photo and its revisions |
immopix_enhance_photo | write | Enhance a photo in the account and return a job handle |
The full catalog stays visible with the read scope. Calling a write tool starts a step-up
authorization instead of failing silently.
Setup happens inside the assistant and takes about a minute. The menu names differ between assistants, the steps do not.
https://immopix.ai/mcp.In Claude Code the same connector is added on the command line:
Run /mcp afterwards to complete the sign-in.
examples/README.md walks through a first conversation and lists the client configurations.
The server is an OAuth 2.1 protected resource. There is no API key and no client secret in this flow.
token_endpoint_auth_method=none. Dynamic client registration is not enabled.S256.https://immopix.ai/mcp, and it is bound to the issued
token. A token issued for another resource is rejected.read. A write tool triggers one step-up for read write, so an agent
cannot change or charge anything under a read-only grant./.well-known/oauth-protected-resource/mcp,
/.well-known/oauth-protected-resource and /.well-known/oauth-authorization-server.The endpoint accepts POST with Authorization: Bearer only. https://immopix.ai/mcp/ with a
trailing slash is not the endpoint and is not redirected.
No image data travels over the MCP connection. The connector accepts neither an image URL nor base64 bytes, and every enhancement works on a photo the account already holds.
To add new photos, ask the assistant for an upload link. immopix_get_upload_link returns the
Immopix page for that property, you upload the files in the browser, and the assistant lists the
photos again to pick up the new ones. Results come back as short-lived links, so the images stay
out of the model context.
An enhancement started through an assistant costs the same credits as the same enhancement in the Immopix web interface. Reading, listing and searching cost nothing.
The tool descriptions and the server instructions require the assistant to name the price and the
balance and to ask for confirmation before it spends anything. immopix_get_photo returns the cost
of the next enhancement per output resolution, and a free revision honestly reports zero.
immopix_get_account returns the balance. Every enhancement also appears in the photo history in
Immopix.
Create and enhance calls carry a client-supplied operation_id. A repeated call with the same ID
and the same arguments replays the first result and charges nothing a second time.
| File | Purpose |
|---|---|
server.json | Metadata for the official MCP Registry |
examples/ | A first conversation and client configurations |
CHANGELOG.md | Published server and tool metadata versions |
SECURITY.md | How to report a vulnerability |
PRIVACY.md | Links to the binding privacy policy |
The hosted server is closed source. This repository carries distribution metadata and client examples only. It contains no server code, no configuration and no credentials.