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

photo-organizer-mcp

v1.0.0

Published

MCP server for organizing Google Photos and Drive - AI agents can auto-organize your cloud storage

Downloads

58

Readme

Photo Organizer MCP Server

AI-powered organization for Google Photos and Google Drive.

This MCP server enables AI agents like Claude to automatically organize your Google Photos and Drive files. Perfect for decluttering cloud storage, finding duplicates, and maintaining organized photo albums.

Features

Google Photos

  • 📊 Analyze Library: Get statistics and insights about your photo collection
  • 🔍 Find Duplicates: Identify potential duplicate photos
  • 📅 Auto-Organize: Create albums by year or month
  • 📈 Reports: Generate detailed organization reports

Google Drive

  • 📂 Auto-Organize: Sort files into folders by type (Documents, Images, Videos, etc.)
  • 🗄️ Archive Old Files: Move old files to Archive folder
  • 🔄 Deduplicate: Find and remove exact duplicate files
  • 📊 Analytics: Get file statistics and storage insights

Installation

# Install from NPM
npm install -g photo-organizer-mcp

# Or clone and build
git clone https://github.com/ExpertVagabond/photo-organizer-mcp
cd photo-organizer-mcp
npm install
npm run build

Setup

1. Google Cloud Credentials

You need Google Cloud credentials to access Photos and Drive APIs:

  1. Go to Google Cloud Console
  2. Create a new project
  3. Enable Google Photos Library API and Google Drive API
  4. Create OAuth 2.0 credentials
  5. Download credentials.json

2. Python Scripts

This MCP server wraps existing Python organizer scripts. Set the path:

export PHOTO_SCRIPTS_PATH="/path/to/drive-photos-organizer"

Or add to .env:

PHOTO_SCRIPTS_PATH=/Users/yourname/drive-photos-organizer

3. Configure Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "photo-organizer": {
      "command": "photo-organizer-mcp",
      "env": {
        "PHOTO_SCRIPTS_PATH": "/path/to/drive-photos-organizer"
      }
    }
  }
}

Usage Examples

With Claude

"Analyze my Google Photos and find duplicates"

Claude will use the analyze_photos tool to scan your library

"Organize my photos into albums by year"

Claude will create year-based albums (dry run first, then execute)

"Clean up my Google Drive by organizing files into folders"

Claude will sort files by type into organized folders

"Archive all Drive files older than 2 years"

Claude will move old files to an Archive folder

"Find and remove duplicate files from my Drive"

Claude will identify and remove exact duplicates

Available Tools

Photo Tools

  1. analyze_photos - Get photo library statistics

    {
      "findDuplicates": true
    }
  2. organize_photos_by_date - Create date-based albums

    {
      "grouping": "year",  // or "month"
      "execute": false     // true to actually create albums
    }

Drive Tools

  1. analyze_drive - Get Drive statistics

  2. organize_drive - Sort files into folders

    {
      "execute": false  // true to actually organize
    }
  3. archive_old_files - Move old files to Archive

    {
      "days": 730,      // Archive files older than this
      "execute": false
    }
  4. deduplicate_drive - Remove duplicate files

    {
      "execute": false  // true to actually delete
    }

Safety Features

  • Dry Run by Default: All operations default to dry run mode
  • Explicit Execution: Must set execute: true to make changes
  • Detailed Reports: See exactly what will happen before executing
  • Non-Destructive: Organizes and archives, doesn't delete (except deduplication)

Monetization (Pro Version)

Upgrade for advanced features:

Free Tier

  • 50 operations per month
  • Basic organization
  • Manual execution required

Pro ($10/month)

  • Unlimited operations
  • Scheduled auto-organization
  • Advanced duplicate detection
  • Priority support

Enterprise ($50/month)

  • White-label branding
  • Team management
  • Custom rules engine
  • API access

Technical Details

  • Built with TypeScript and Model Context Protocol SDK
  • Wraps Python scripts for Google API integration
  • Async operation with progress reporting
  • Handles large libraries (10,000+ photos)

Contributing

Contributions welcome! Please open issues or PRs on GitHub.

License

MIT License - see LICENSE file

Author

ExpertVagabond - https://github.com/ExpertVagabond


Need help? Contact: [email protected]