npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@phototology/mcp

v1.3.0

Published

Persistent memory for visual intelligence. MCP server for the Phototology registry: analyze photos with composable lenses, enrich files with EXIF/IPTC/XMP metadata, and look up cached results for free. Works with local files. Analyze once. Remember foreve

Readme

@phototology/mcp

Persistent memory for visual intelligence. Analyze once. Remember forever.

npm version License: MIT MCP spec Node

Install in VS Code Install in VS Code Insiders Install in Cursor

Click an install button to add the MCP server in one step. You'll be prompted to fill in PHOTOTOLOGY_API_KEY after install. For other editors, see the Setup section below.

MCP server for Phototology, the visual-intelligence registry. Any MCP-speaking agent (Claude Code, Cursor, VS Code Copilot, Claude Desktop) calls Phototology as a tool. Photos are analyzed once, keyed by perceptual hash, then returned free forever to any future caller on the same account.

npx @phototology/mcp

The interactive wizard asks for your API key and writes the config for whichever editor you pick.

Without Phototology vs With Phototology

Without: every agent that needs to understand a photo pays a vision model from scratch. Same image, same question, full price every time.

With: the first call bills 1 credit per lens. Every subsequent call on that photo returns the cached lens result for free. The registry compounds with use.

7 tools at a glance

| Tool | What it does | Cost | |------|--------------|------| | analyze_photo | Run AI vision against ONE image and return structured facts per lens. Accepts imageUrl, imageBase64, or imagePath. | 1 credit per lens. Re-running cached lenses on the same photo: 0. | | analyze_batch | Analyze 1 to 200 photos in a single call. Internally lookup-first per URL (20 in flight), then analyzes cache-miss photos with bounded concurrency (5 in flight, matching the API per-user cap). For thousands, loop in slices of 200. Accepts imageUrls, imagesBase64, or imagePaths (with glob support). | 1 credit per lens per non-cached photo. Cache hits free. | | lookup_photo | Check if a single photo has already been analyzed; return all cached lens results. Accepts sha256, pHash, imageUrl, imageBase64, or imagePath (cascade). | Free. | | enrich_photo | Write cached lens output into a photo's EXIF/IPTC/XMP metadata so the structured intelligence travels with the file. Accepts imageUrl, imageBase64, or imagePath plus an optional outputPath to save the enriched bytes back to disk. | 5 credits per call. | | list_lenses | Enumerate available lenses and stacks with descriptions and output fields. | Free. | | get_credits | Read the account credit balance — total spendable credits plus reserved in-flight holds. | Free. | | purchase_credits | Return a wallet deep-link the user can open to buy more credits. | Free. |

Pricing

  • 1 credit = $0.01 = one lens run on one photo. Stack five lenses on a photo = 5 credits = $0.05.
  • 5,000 free credits when you sign up: 1,000 for verifying your email, 4,000 for adding a card-on-file. The card is never charged automatically. One-time, not recurring.
  • Lookups, lens discovery, balance reads, and purchase links are always free.
  • Cache hits cost zero. Re-running the same lens on the same photo returns the cached output for free. The registry keeps re-runs free across sessions.
  • Bespoke schema extraction = 5 credits per image (plus 1 per additional stacked lens).
  • Moderation is free and always-on. It's safety infrastructure, never billed.

Credit packs (all at $0.01/credit, no volume discount)

| Pack | Credits | Price | |------|---------|-------| | Starter | 1,000 | $10 | | Pro | 10,000 | $100 | | Business | 100,000 | $1,000 |

First purchase doubles. Your first pack ever credits 2x. A Starter $10 buys 2,000 credits the first time. No subscriptions; pay-as-you-go via packs only.

Local files

All three image-accepting tools (analyze_photo, analyze_batch, lookup_photo) accept three input modes — pick whichever fits how the photo arrived:

| Input field | When to use | |---|---| | imageUrl | The photo is at a publicly-fetchable URL. | | imagePath | The photo is on the user's local disk as seen by the machine running the MCP server (typically the user's laptop). Pass an absolute path (/Users/...) or ~/-prefixed (~/photos/...). The MCP reads the file, validates it, and forwards the bytes. Not for agent-sandbox paths (e.g. Claude's /mnt/user-data/uploads/...) — that sandbox is invisible to a locally-installed MCP. For agent-sandboxed uploads, use imageBase64 (small images) or imageUrl (hostable images of any size). | | imageBase64 | You already have the image bytes in memory as a base64 string. Practical envelope: ~50-150KB JPEG / ~70-200K base64 chars. Above that, LLM-driven clients run out of output-token budget before the MCP receives the full payload (a 3.4MB JPEG produces ~4.57M chars). For larger images, prefer imageUrl or imagePath. |

For batch: use imagePaths: string[] for local paths (supports globs like ~/vacation/*.jpg), imagesBase64: string[] for base64 arrays, and combine freely with imageUrls.

lookup_photo with imagePath / imageBase64 runs a transparent sha256→pHash cascade — always free, always checks both exact-bytes and perceptually-similar matches.

Per-image cap: 10MB raw. Batch cap: 200 inputs total per call. Supported formats: JPEG, PNG, GIF, WebP, HEIC, AVIF, TIFF.

Setup: pick your editor

Claude Code

~/.claude/settings.json:

{
  "mcpServers": {
    "phototology": {
      "command": "npx",
      "args": ["-y", "@phototology/mcp"],
      "env": { "PHOTOTOLOGY_API_KEY": "pt_live_..." }
    }
  }
}

Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "phototology": {
      "command": "npx",
      "args": ["-y", "@phototology/mcp"],
      "env": { "PHOTOTOLOGY_API_KEY": "pt_live_..." }
    }
  }
}

Cursor

.cursor/mcp.json in your project (or ~/.cursor/mcp.json globally):

{
  "mcpServers": {
    "phototology": {
      "command": "npx",
      "args": ["-y", "@phototology/mcp"],
      "env": { "PHOTOTOLOGY_API_KEY": "pt_live_..." }
    }
  }
}

VS Code Copilot

.vscode/mcp.json:

{
  "servers": {
    "phototology": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@phototology/mcp"],
      "env": { "PHOTOTOLOGY_API_KEY": "pt_live_..." }
    }
  }
}

Windsurf

~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "phototology": {
      "command": "npx",
      "args": ["-y", "@phototology/mcp"],
      "env": { "PHOTOTOLOGY_API_KEY": "pt_live_..." }
    }
  }
}

Gemini CLI

~/.gemini/settings.json:

{
  "mcpServers": {
    "phototology": {
      "command": "npx",
      "args": ["-y", "@phototology/mcp"],
      "env": { "PHOTOTOLOGY_API_KEY": "pt_live_..." }
    }
  }
}

Codex CLI

~/.codex/config.toml:

[mcp_servers.phototology]
command = "npx"
args = ["-y", "@phototology/mcp"]

[mcp_servers.phototology.env]
PHOTOTOLOGY_API_KEY = "pt_live_..."

After editing the config, restart your editor. You should see 7 tools registered under phototology.

First 5 minutes

Try these prompts in order:

  1. Discover. "Use the phototology MCP to show me what lenses are available." The agent calls list_lenses and shows you every available lens and stack.
  2. Check your balance. "How many phototology credits do I have?" The agent calls get_credits and reports your spendable credit balance.
  3. Cheap analyze. "Analyze this photo with just the dating lens: <url>." The agent picks lenses: ["dating"] and spends 1 credit instead of running the full catalog.
  4. Free re-lookup. Repeat the same URL with a different question that the cached lens already answers. Zero credits.
  5. Out of credits. Drain the pool, try another analyze. The agent receives a structured error with a wallet deep-link and surfaces it cleanly.

Companion skills

Five optional skills ship inside the package under node_modules/@phototology/mcp/skills/. Copy any of them into your Claude skills directory (~/.claude/skills/<skill-name>/) to install:

  • phototology:lookup-first: always check the registry before spending credits (single-photo).
  • phototology:check-credits: pre-flight balance read before a big batch.
  • phototology:smart-stack: smart-pick the cheapest lens subset for a specific question.
  • phototology:photo-shared: activate whenever the user shares, attaches, drops, or references an image. Routes the photo through Phototology for the cheapest accurate answer.
  • phototology:batch-analyze: any job with 2 or more photos. Calls analyze_batch instead of looping analyze_photo. Looks up first, analyzes only the misses, surfaces credit savings.

When installed, the agent invokes them when context matches.

Optional: auto-trigger on image attachment (Claude Code)

If you want Claude Code to automatically hint at Phototology the moment you attach an image (no model discretion required), add this hook to ~/.claude/settings.json:

{
  "hooks": {
    "UserPromptSubmit": [
      {
        "matcher": "image",
        "command": "echo 'User shared an image. Consider phototology:photo-shared to route it through the registry-first analysis path.'"
      }
    ]
  }
}

The hook injects a system hint on every prompt containing an image, nudging the model toward the phototology:photo-shared skill before it picks anything else. Skip the hook if you prefer to let the model decide on its own.

Lens reference

| Lens | Owned output fields | |------|---------------------| | dating | estimatedDate, techAnchors, temporalMarkers, title, genre, caption, dateAnchors, season, holiday, event, visibleDates, reproduction | | people | physicalObservations, collectionDynamics, peopleCount | | location | location | | atmosphere | atmosphere, emotions, warmCaption, semanticDescription | | entities | entities | | accessibility | accessibility | | photo-quality | quality, visualFaults, rotation, documentClassification, scan | | text-content | textContent | | composition | composition | | moderation | moderation | | describe | describe | | condition | condition | | authenticity | authenticity | | color-palette | colorPalette | | automobile | automobile | | vehicle-condition | overallCondition, componentGrades, observations, accidentIndicators, photoQuality, missingViews, vehicleContext, photos, sellerSummary |

Pass any of these as lenses: [...] on analyze_photo, or use a stack (full-analysis, quick-scan, automobile, claims, property, ecommerce, memorial, vehicle-condition) to bundle several. The stack enum on the tool schema is the authoritative list; new lenses appear here automatically on publish.

Note on naming. The previous tool name was list_modules and the previous arg names were modules / preset. The current names are list_lenses / lenses / stack. The old names still work as deprecated aliases on analyze_photo during the rename. Prefer the new names in new code.

Delta billing

Phototology remembers every photo per account, keyed by perceptual hash. The second call on the same image bills zero credits for any lens that was already run. Only new lenses hit the LLM. Pass refresh: true to bypass the cache and re-run.

Environment variables

| Variable | Required | Description | |----------|----------|-------------| | PHOTOTOLOGY_API_KEY | Yes | Your API key (pt_live_... or pt_test_...). | | PHOTOTOLOGY_BASE_URL | No | API base URL. Default: https://api.phototology.com. | | PHOTOTOLOGY_MCP_NO_TELEMETRY | No | Set to 1 to disable anonymous client-discovery telemetry (see below). |

Keys starting with pt_test_ use the test sandbox (instant responses, zero cost, golden fixtures).

Anonymous telemetry

When the MCP server completes the initialize handshake with your editor, it reports the editor's stated name + version (e.g. claude-desktop 0.7.0, cursor 0.42) plus the MCP package version to api.phototology.com so we can see which clients are connecting. This is the same domain your tool calls already go through — no third-party SDK is bundled, and your API key is the only credential used. No image content, file paths, prompts, or tool inputs/outputs are sent.

Set PHOTOTOLOGY_MCP_NO_TELEMETRY=1 in the same env block as PHOTOTOLOGY_API_KEY to disable.

FAQ

Why does analyze_photo accept both lenses and modules? The brand name was unified from "module" to "lens" in 2026-04. Both names are accepted on the MCP surface during the rename; the SDK still uses modules. Prefer lenses in new code.

Why is moderation never billed? Moderation is safety infrastructure, not a feature you opt into. CSAM + illegal-content detection runs on every analyze. Treating it as a price line item would create perverse incentives.

How is get_credits different from lookup_photo? get_credits reads your account balance. lookup_photo checks whether a specific image has been analyzed before. Both are free; they answer different questions.

Why is purchase_credits a "deep-link" instead of completing checkout? Stripe checkout requires a browser. The MCP cannot complete payment; the user must open the URL the tool returns.

Links

License

MIT