Skip to main content
Glama
prasadabhishek

photographi-mcp

photographi-mcp

Fast, private, and grounded technical photo analysis for AI applications.

photographi-mcp is an MCP server that enables AI models and LLM-powered tools to perform technical analysis on local photo libraries. It runs computer vision models directly on your hardware (powered by photo-quality-analyzer-core) to evaluate sharpness, focus, and exposure—enabling capabilities like automated culling, burst ranking, and metadata indexing without requiring a cloud upload.

⚡ Why photographi?

  • Technical First: Purpose-built for objective metrics (sharpness, lighting, focus). It provides technical data for evaluating image quality.

  • Token Efficient: Save model context by pre-filtering technical metadata locally. Only the most relevant insights are sent to the AI application, keeping sessions fast and lean.

  • Privacy First: All analysis happens 100% locally on your machine.

  • Low Latency: Built for efficient processing, allowing for rapid ranking and technical feedback on local photo folders.


👁️ What It Analyzes

  • Smart Focus: Detects subjects and verifies they're sharp

  • Exposure: Catches blown highlights and blocked shadows

  • Gear-Aware: Knows your lens's sweet spot for optimal sharpness

  • Composition: Evaluates framing and subject placement

  • Quality Alerts: Flags motion blur, diffraction, high ISO noise

NOTE

Technical vs. Artistic: This tool is strictly objective. It evaluates photos based on technical metrics and computer vision (sharpness, exposure, noise, etc.). It does not understand artistic intent, aesthetics, or "vibe." A blurry, underexposed photo may be an artistic masterpiece, but photographi will correctly flag it as technically poor.

For the science and math behind it, see the Technical Documentation.


Related MCP server: CoreViz MCP

📸 See It In Action

Here are real examples from actual photo analysis:

Example 1: Excellent Photo

Best Shot

{
  "overallConfidence": 0.89,
  "judgement": "Excellent",
  "keyMetrics": {
    "sharpness": 0.94,
    "exposure": 0.87,
    "composition": 0.85
  }
}

Verdict: Tack sharp on subject, well exposed, strong composition.


Example 2: Poor Photo

Worst Shot

{
  "overallConfidence": 0.20,
  "judgement": "Very Poor",
  "keyMetrics": {
    "sharpness": 0.30,
    "focus": 0.07,
    "exposure": 0.0
  }
}

Verdict: Missed focus on subject, severe underexposure/black clipping, and excessive headroom.


🛠️ Tools (MCP)

photographi-mcp enables AI models to perform deep technical audits through these standardized tools:

Tool

AI "Intent" Example

Action / Insight Provided

analyze_photo

"Is this dog photo sharp enough for a print?"

Full technical audit of sharpness, focus, and lighting.

analyze_folder

"How's the overall quality of my 'Vacation' folder?"

Statistical summary identifying the best/worst image groups.

rank_photographs

"Find the best shot in this burst of the cake."

Ranks files by technical perfection to find the "hero" frame.

cull_photographs

"Move all the blurry photos to a junk folder."

Automatically cleans up failed shots into a subfolder.

threshold_cull

"Strictly separate keepers using a score of 0.7."

Binary sorting to isolate professional-grade assets.

get_color_palette

"What colors are in this sunset for my website?"

Extracts hexadecimal codes for dominant image aesthetics.

get_folder_palettes

"Generate a moodboard from my 'Forest' shoot."

Batch color extraction for an entire folder.

get_scene_content

"Which photos contain a 'cat' or 'mountain'?"

Rapid content indexing based on 80+ object categories.

Full API Reference


🚀 Get Started

Claude CLI (Fastest)

claude mcp add --scope user photographi uvx photographi-mcp

Claude Desktop (macOS)

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "photographi": {
      "command": "uvx",
      "args": ["photographi-mcp"]
    }
  }
}

GitHub Copilot CLI

Add to ~/.config/github-copilot/config.json:

{
  "mcp_servers": {
    "photographi": {
      "command": "uvx",
      "args": ["photographi-mcp"]
    }
  }
}

🔒 Privacy & Telemetry

photographi is built on a Privacy-First philosophy.

  • Anonymized Aggregates Only: We never collect filenames, paths, or EXIF data.

  • Total Transparency: Audit our collection logic directly in analytics.py.

  • Opt-Out: Set the environment variable PHOTOGRAPHI_TELEMETRY_DISABLED=1 or use the --disable-telemetry flag.


📖 Documentation


Available Tools

8 tools
photographi_analyze_folderA

Batch analyzes all images in a folder with high concurrency (4-8 images at once). Returns quality scores and judgements for each image. Default limit is 100 images per call. Use 'limit' and 'offset' for pagination. If 'nextOffset' is in the response, call again with that offset. Perfect for understanding the overall quality distribution of a shoot.

ParametersJSON Schema
NameRequiredDescriptionDefault
folder_pathYesAbsolute path to folder.
metricsNoSpecific metrics to calculate (sharpness, exposure, etc.). Defaults to all.
enable_subject_detectionNoUse AI for subject-aware analysis.
model_sizeNoYOLO model size.nano
limitNoBatch size for pagination.
offsetNoPagination offset. Increment this by 'limit' to see more results.
fast_modeNoDefaults to True (4-8x faster). Set to False for full-resolution 'Forensic Precision' mode (much slower on 40MP+ files).

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description fully discloses behavioral traits: high concurrency (4-8 images), default limit of 100, pagination behavior, and performance trade-offs of fast_mode. It also implies read-only analysis, consistent with the tool's purpose.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, with three front-loaded sentences. Each sentence adds crucial information: the main function, pagination instructions, and use case. No filler or redundant content.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 7 parameters and an output schema, the description covers the essence: batch behavior, pagination, performance modes. It does not need to repeat schema details but provides sufficient context for an agent to use the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Although schema coverage is 100% (baseline 3), the description adds value by explaining concurrency behavior not in schema, clarifying fast_mode's performance trade-off, and describing pagination with 'nextOffset'. This exceeds schema documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: batch analyzing all images in a folder. It specifies the resource (folder), action (analyze with high concurrency), and outcome (quality scores and judgements). This distinguishes it from sibling tools like photographi_analyze_photo, which handles single images.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear usage guidance: pagination with 'limit' and 'offset', and handling 'nextOffset'. It also recommends the tool for assessing overall quality distribution of a shoot. However, it does not explicitly state when to use alternatives, though this is implied by sibling names.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

photographi_analyze_photoA

Analyzes a single photo for technical quality (sharpness, exposure, noise, etc.). Returns overall score, judgement, and per-metric breakdowns. Use this for detailed inspection of individual images. For batch analysis, use photographi_analyze_folder.

ParametersJSON Schema
NameRequiredDescriptionDefault
image_pathYesAbsolute path to RAW/JPEG/TIFF.
metricsNoSpecific metrics (sharpness, exposure, noise, focus, color, dynamicRange, composition).
enable_subject_detectionNo
model_sizeNoYOLO model size.nano
fast_modeNoDefaults to True (4-8x faster). Set to False for full-resolution 'Forensic Precision' mode (much slower on 40MP+ files).

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full responsibility for behavioral disclosure. It describes the fast_mode parameter's trade-off between speed and forensic precision, which is a key behavioral aspect. However, it does not mention any other side effects (e.g., file modification) or prerequisites, though the tool appears to be read-only. The description is fairly transparent but could be more explicit about non-destructive behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences long. The first covers purpose and output, the second provides usage guidance and sibling differentiation. Every sentence is essential; no unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the detailed input schema (5 parameters with descriptions, enums, defaults) and the presence of an output schema, the description is complete. It explains the tool's purpose, what it returns, and when to use it versus the sibling tool. No additional information is needed for successful tool invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is high (80%), so baseline is 3. The description adds no additional parameter-level detail beyond what the schema already provides (e.g., metrics list, fast_mode behavior). It does summarize the overall output, which is helpful but not specific to parameter semantics. Thus, the description adds minimal value beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool analyzes a single photo for technical quality metrics like sharpness, exposure, noise, etc., and returns an overall score, judgement, and per-metric breakdowns. It distinguishes itself from the sibling batch tool 'photographi_analyze_folder' by explicitly noting it is for individual images.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says 'Use this for detailed inspection of individual images' and provides the alternative 'For batch analysis, use photographi_analyze_folder.' This gives clear when-to-use and when-not-to-use guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

photographi_cull_photographsA

Culls low-quality images by moving them to a 'culled_photos' subfolder. Images ABOVE the threshold (default 0.4) stay in the original folder. Images BELOW the threshold are moved to culled_photos/. Processes 100 images per call by default. Use 'limit' and 'offset' for pagination. Mode options: 'move' (default), 'xmp' (sidecar tagging), or 'both'.

ParametersJSON Schema
NameRequiredDescriptionDefault
folder_pathYesAbsolute path to folder.
thresholdNoOverall score threshold (0.0-1.0). Images below this are culled.
modeNoAction to perform: 'move' (files to subfolder), 'xmp' (sidecar tags only), or 'both'.move
enable_subject_detectionNo
limitNoNumber of images to process in this batch.
offsetNoPagination offset.
fast_modeNoDefaults to True (4-8x faster). Set to False for full-resolution 'Forensic Precision' mode (much slower on 40MP+ files).

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description discloses key behaviors: moving files, threshold logic, batch size, mode options, and fast mode. It is transparent about what happens to images above/below threshold, though it does not mention that moving is potentially destructive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise at 5 sentences, front-loaded with the main action, and includes essential details without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 7 parameters and an output schema, the description covers the core functionality, modes, pagination, and fast mode. It does not explain the subject_detection parameter but the schema covers it. Overall, it is nearly complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is high (86%), so baseline is 3. The description adds marginal value by explaining defaults and behavior (e.g., threshold logic, fast mode speed), but most parameters are already described in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it 'Culls low-quality images by moving them to a culled_photos subfolder', specifying the verb (cull) and resource (images). It differentiates from siblings like photographi_threshold_cull by detailing modes and threshold behavior.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains when to use (culling low-quality images) and provides context on default behavior, modes, and pagination. However, it does not explicitly compare to sibling tools or state when not to use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

photographi_get_color_paletteA

Extracts a representative color palette from a single image using K-Means clustering. Returns a list of hex color codes (e.g., ['#FF5733', '#33FF57', ...]). Default is 5 colors. Use this for design inspiration or color grading reference.

ParametersJSON Schema
NameRequiredDescriptionDefault
image_pathYesAbsolute path to image.
colorsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations exist, so description bears full burden. It discloses the algorithm (K-Means), read-only nature (extraction), and output format. Lacks details on error handling or resource usage, but is adequate for a simple extraction tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, each serving a distinct purpose: purpose+method, output+default, usage guidance. Front-loaded, no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given output schema exists, return value explanation is adequate. Tool is simple with 2 params; description covers key behavior. Minor omission: no mention of valid image formats or error cases, but overall sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers image_path with description but not colors. Description adds default value and output format context for colors, and implies image_path is absolute, adding value beyond schema's 50% coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states it extracts a color palette from a single image using K-Means clustering, and lists output as hex codes. It distinguishes from sibling tools like photographi_get_folder_palettes (folder-level) and photographi_analyze_photo (broader analysis).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides a use case ('design inspiration or color grading reference') but does not explicitly exclude alternatives or specify when not to use this tool over siblings like photographi_get_folder_palettes for batch palette extraction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

photographi_get_folder_palettesB

Extracts color palettes from multiple images in a folder. Processes 20 images per call by default. Use 'limit' and 'offset' for pagination. Returns a map of filename → color palette. Useful for building color-based galleries or moodboards.

ParametersJSON Schema
NameRequiredDescriptionDefault
folder_pathYesAbsolute path to folder.
colorsNo
limitNo
offsetNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. It states default processing of 20 images and that it returns a map. However, it lacks details on error handling, folder validity, or the role of the 'colors' parameter, leaving some behavioral ambiguity.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise with three clear sentences: function, default behavior, and use case. No redundant information, but the structure could be improved by explicitly linking parameters.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 4 parameters and an output schema, the description adequately covers pagination but misses the 'colors' parameter explanation. The output schema existence reduces the need for return value details, but the missing parameter info reduces completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With only 25% schema description coverage, the description adds minimal value. It explains pagination via limit/offset but does not explain the 'colors' parameter or the relationship between limit and default processing count. The description partially compensates but leaves a significant gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool extracts color palettes from multiple images in a folder, using the verb 'Extracts' and the resource 'color palettes'. It distinguishes from siblings like 'get_color_palette' (single image) via the folder scope, though not explicitly.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description mentions pagination using limit/offset but does not provide explicit guidance on when to use this tool versus alternatives (e.g., use get_color_palette for a single image). No exclusion criteria or when-not-to-use advice.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

photographi_get_scene_contentA

Detects objects in a photo using YOLO (e.g., person, dog, car, etc.). Returns a simple list of object labels. Use this for quick scene indexing or content-based search. For full quality analysis with subject-aware metering, use photographi_analyze_photo.

ParametersJSON Schema
NameRequiredDescriptionDefault
image_pathYesAbsolute path to RAW/JPEG/TIFF.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description bears full burden. Describes detection and return of labels, implying read-only behavior. Lacks explicit statement about no side effects, but adequately clear for a detection tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two efficient sentences plus a one-sentence alternative mention. No fluff; main purpose and usage guidance front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Simple detection tool with one parameter and output schema provided. Description fully covers purpose, usage, and alternative. No missing context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description covers 100% of parameters with clear detail ('Absolute path to RAW/JPEG/TIFF.'). Tool description adds no extra parameter information beyond schema, meeting baseline for high coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states it detects objects using YOLO and returns object labels. Distinguishes from sibling tool 'photographi_analyze_photo' by contrasting quick indexing vs. full analysis.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly recommends use 'for quick scene indexing or content-based search' and directs to 'photographi_analyze_photo' for alternative cases. Clear when and when not to use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

photographi_rank_photographsA

Ranks photos by technical quality and returns the top_n best images. Uses high concurrency to process up to 100 images per call (default limit). Ideal for burst sequences or finding hero shots. Returns detailed metrics for each top image. For full folder analysis, use photographi_analyze_folder instead.

ParametersJSON Schema
NameRequiredDescriptionDefault
folder_pathYesAbsolute path to folder.
top_nNoNumber of top-rated images to return.
limitNoMax images to evaluate in this batch.
offsetNoPagination offset.
metricsNoSpecific metrics for ranking.
enable_subject_detectionNo
model_sizeNoYOLO model size.nano
fast_modeNoDefaults to True (4-8x faster). Set to False for full-resolution 'Forensic Precision' mode (much slower on 40MP+ files).

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden. It discloses high concurrency, limit of 100, fast_mode performance trade-off (4-8x faster vs. forensic precision), and that it returns detailed metrics. This is thorough for a non-destructive read tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise with five sentences, front-loaded with the primary action, then adds details and an alternative. Every sentence adds value without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 8 parameters and an existing output schema, the description covers main purpose, use cases, concurrency, and limit. It does not mention pagination (offset) or subject detection/model_size, but these are secondary and schema covers them. Still, it is fairly complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is high (88%), so baseline is 3. The description adds context about the limit parameter (high concurrency, up to 100 per call) but does not elaborate on other parameters beyond what the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool ranks photos by technical quality and returns the top_n best images. It distinguishes itself from the sibling tool photographi_analyze_folder by suggesting the latter for full folder analysis.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states ideal use cases: burst sequences or finding hero shots. Mentions high concurrency and default limit of 100 images per call. Provides explicit alternative: use photographi_analyze_folder for full folder analysis.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

photographi_threshold_cullA

Binary threshold culling: moves images below min_confidence (default 0.6) to a 'rejects' subfolder. Images ABOVE the threshold stay in the original folder. Similar to photographi_cull_photographs, but uses a higher default threshold and 'rejects/' folder name for stricter filtering. Processes 100 images per call. Mode options: 'move', 'xmp', or 'both'.

ParametersJSON Schema
NameRequiredDescriptionDefault
folder_pathYesAbsolute path to folder.
min_confidenceNo
modeNoAction to perform: 'move' (files to subfolder), 'xmp' (sidecar tags only), or 'both'.move
enable_subject_detectionNo
limitNo
offsetNo
fast_modeNoDefaults to True (4-8x faster). Set to False for full-resolution 'Forensic Precision' mode (much slower on 40MP+ files).

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden. It discloses side effects (moving files to rejects), mode options, processing limit, and fast mode behavior. It transparently explains default behavior and consequences.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Description is concise (two sentences), front-loaded with core action, and every sentence adds value. No redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 7 parameters, low schema coverage, and no annotations, description covers threshold behavior, defaults, mode, processing limit, and sibling comparison. But misses explanation for enable_subject_detection and offset. Output schema exists, so return format not needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 43% (3 of 7 params described). Description adds meaning: explains min_confidence default, processing 100 per call, mode options. However, parameters like enable_subject_detection, limit, and offset are not explained beyond schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states binary threshold culling for images, moving low-confidence ones to 'rejects' subfolder, and distinguishes from sibling photographi_cull_photographs by higher default threshold and different folder name.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Description explicitly compares with sibling tool and provides context for when to use this stricter filtering. It mentions processing 100 images per call and mode options, but does not explicitly state when not to use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A3.9/5.0
Disambiguation4/5

Most tools have distinct purposes, but 'cull_photographs' and 'threshold_cull' are very similar, differing only in default thresholds and folder names, which could cause misselection. 'rank_photographs' and 'analyze_folder' also have overlapping functionality.

Naming Consistency4/5

All tools share the 'photographi_' prefix and generally follow a verb_noun pattern. However, 'cull_photographs' and 'threshold_cull' are inconsistent in structure (verb_noun vs adjective_verb), breaking the otherwise predictable naming convention.

Tool Count5/5

With 8 tools covering analysis, culling, ranking, color extraction, and scene detection, the count is well-scoped for a photography MCP server. Each tool serves a clear role without being excessive or insufficient.

Completeness4/5

The tool set covers core photography workflows: single/batch analysis, culling, ranking, color palettes, and object detection. Minor gaps exist (e.g., no tool for metadata extraction or direct editing), but these are acceptable for the server's stated purpose.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/prasadabhishek/photographi-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server