Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From immich-photo-manager
Connects to an Immich self-hosted photo management server to search, browse, and retrieve photos, albums, and assets. Requires Immich API key and base URL.
npx claudepluginhub drolosoft/immich-photo-manager --plugin immich-photo-managerCopy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"immich": {
"command": "python3",
"args": [
"-m",
"immich_mcp_server"
],
"env": {
"PYTHONPATH": "${CLAUDE_PLUGIN_ROOT}/src",
"MCP_TRANSPORT": "stdio",
"IMMICH_API_KEY": "your-api-key-here",
"IMMICH_BASE_URL": "https://your-immich-server.com",
"IMMICH_CACHE_DIR": "${CLAUDE_PLUGIN_ROOT}/.mcpb-cache"
}
}
}
}Replace placeholder values for: IMMICH_API_KEY
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
Server configuration and connection parameters
python3Command-line arguments passed to the server process
Environment variables set when the server starts
PYTHONPATH=${CLAUDE_PLUGIN_ROOT}/srcMCP_TRANSPORT=stdioIMMICH_API_KEY=your-api-key-hereIMMICH_BASE_URL=https://your-immich-server.comIMMICH_CACHE_DIR=${CLAUDE_PLUGIN_ROOT}/.mcpb-cacheSensitive values you must provide — never committed to source control
Share bugs, ideas, or general feedback.