gitextract_jd7zbvmp/ ├── .gitignore ├── CONFIG.md ├── GEMINI.md ├── LICENSE ├── LLM-INSTALL.md ├── README.md ├── glama.json ├── pyproject.toml ├── pytest.ini ├── setup.sh ├── src/ │ └── imagesorcery_mcp/ │ ├── README.md │ ├── __init__.py │ ├── __main__.py │ ├── config.py │ ├── logging_config.py │ ├── middlewares/ │ │ ├── path_access.py │ │ ├── telemetry.py │ │ └── validation.py │ ├── prompts/ │ │ ├── README.md │ │ ├── __init__.py │ │ └── remove_background.py │ ├── resources/ │ │ ├── README.md │ │ ├── __init__.py │ │ └── models.py │ ├── scripts/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── clear_telemetry_keys.py │ │ ├── create_model_descriptions.py │ │ ├── download_clip.py │ │ ├── download_models.py │ │ ├── populate_telemetry_keys.py │ │ └── post_install.py │ ├── server.py │ ├── telemetry_amplitude.py │ ├── telemetry_keys.py │ ├── telemetry_posthog.py │ └── tools/ │ ├── README.md │ ├── __init__.py │ ├── blur.py │ ├── change_color.py │ ├── config.py │ ├── crop.py │ ├── detect.py │ ├── draw_arrows.py │ ├── draw_circle.py │ ├── draw_lines.py │ ├── draw_rectangle.py │ ├── draw_text.py │ ├── fill.py │ ├── find.py │ ├── metainfo.py │ ├── ocr.py │ ├── overlay.py │ ├── resize.py │ └── rotate.py └── tests/ ├── conftest.py ├── prompts/ │ └── test_remove_background.py ├── resources/ │ └── test_models.py ├── test_config.py ├── test_logging.py ├── test_path_access.py ├── test_server.py ├── test_telemetry.py └── tools/ ├── test_blur.py ├── test_change_color.py ├── test_config_tool.py ├── test_crop.py ├── test_detect.py ├── test_draw_arrows.py ├── test_draw_circle.py ├── test_draw_lines.py ├── test_draw_rectangle.py ├── test_draw_text.py ├── test_fill.py ├── test_find.py ├── test_metainfo.py ├── test_ocr.py ├── test_overlay.py ├── test_resize.py └── test_rotate.py