Free browser-based image optimization platform — compress, convert WebP, AI rename, HEIC convert, batch resize, 20+ tools. No uploads, 100% private.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
git clone https://github.com/samma1997/sammapix{
"mcpServers": {
"sammapix": {
"command": "node",
"args": ["/path/to/sammapix/dist/index.js"],
"env": {
"NEXTAUTH_SECRET": "<nextauth_secret>",
"STRIPE_SECRET_KEY": "<stripe_secret_key>",
"NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY": "<next_public_stripe_publishable_key>",
"NEXT_PUBLIC_APP_URL": "<next_public_app_url>"
}
}
}
}NEXTAUTH_SECRETSTRIPE_SECRET_KEYNEXT_PUBLIC_STRIPE_PUBLISHABLE_KEYNEXT_PUBLIC_APP_URLMCP Servers overview
<h1 align="center">SammaPix</h1>
<p align="center"><strong>35 free browser-based image tools — compress, convert, rename with AI, and more.</strong></p>
<p align="center">
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-black.svg" alt="MIT License"></a>
<a href="https://nextjs.org"><img src="https://img.shields.io/badge/Next.js-15-black?logo=next.js" alt="Next.js"></a>
<a href="https://typescriptlang.org"><img src="https://img.shields.io/badge/TypeScript-5-blue?logo=typescript" alt="TypeScript"></a>
<a href="https://www.sammapix.com"><img src="https://img.shields.io/badge/Live-sammapix.com-6366f1" alt="Live Site"></a>
<a href="https://github.com/samma1997/sammapix/actions/workflows/ci.yml"><img src="https://github.com/samma1997/sammapix/actions/workflows/ci.yml/badge.svg" alt="Build"></a>
</p>
---
SammaPix is a free, open-source image optimization platform that runs entirely in the browser. No uploads. No account required. No watermarks. Your images never leave your device.
Built for content creators, developers, and anyone who works with images at scale.
<p align="center">
<img src="public/screenshots/hero-dark.png" alt="SammaPix — AI Photo Workflow" width="100%">
</p>
**Key features:**
- 100% client-side processing — images stay on your machine
- 35 tools across four categories (optimize, AI, creative, organize)
- AI-powered rename, alt text generation, and photo sorting via Google Gemini
- Batch processing with ZIP download
- HEIC, WebP, PDF, and video format support
- Dark mode, fully responsive
- Pro plan ($9/month) for unlimited AI credits and larger batches
---
## For AI agents (MCP server)
SammaPix is also a **remote MCP server** so AI agents (Claude, Cursor, and any MCP-compatible client) can run real image & PDF processing directly — no local install.
- **Endpoint:** `https://www.sammapix.com/api/mcp` (Streamable HTTP)
- **Auth:** OAuth 2.1 — no API key to paste. Or generate a key for REST.
- **20+ tools:** compress, convert, resize, crop, rotate, flip, adjust, grayscale, blur, tint, negate, border, round, watermark, metadata · PDF compress/merge/split/rotate, image-to-PDF, PDF info
- **Pipeline:** chain multiple image ops in **one call** — fewer round-trips, far fewer tokens for the agent
- **Zero-retention:** files processed in memory and discarded. Pay-per-use, 25 free ops/day.
Add it to your agent:
```json
{
"mcpServers": {
"sammapix": { "url": "https://www.sammapix.com/api/mcp" }
}
}
```
Full docs, benefits, and REST examples: **[sammapix.com/for-ai-agents](https://www.sammapix.com/for-ai-agents)**
---
## Tools
### Optimize
| Tool | Description |
|------|-------------|
| Compress | Reduce file size without visible quality loss |
| WebP Converter | Convert JPG/PNG to WebP for faster web delivery |
| HEIC Converter | Convert iPhone HEIC photos to JPG or PNG |
| Batch Resize | Resize multiple images by pixel dimensions or percentage |
| Crop & Ratio | Crop to standard aspect ratios or custom dimensions |
| PDF to Image | Extract pages from PDF as high-quality images |
### AI-Powered
| Tool | Description |
|------|-------------|
| AI Organize | Drop 100+ photos — AI sorts them into named folders |
| AI Rename | Generate descriptive, SEO-friendly filenames automatically |
| AI Alt Text | Generate accessibility alt text for any image |
| AI Photo Sort | Sort photos by subject, scene, or custom criteria |
| Web Optimize | AI-assisted optimization for web performance |
| Transcribe | Extract text from images (OCR) |
### Creative
| Tool | Description |
|------|-------------|
| Film Filters | Apply 14 analog film presets (Kodak, Fuji, Polaroid, etc.) |
| Watermark | Add text or image watermarks with custom positioning |
### Organize
| Tool | Description |
|------|-------------|
| EXIF Viewer | Inspect full metadata — GPS, camera, exposure, timestamps |
| EXIF Remover | Strip GPS and privacy data before sharing |
| Find Duplicates | Detect duplicate images by visual similarity |
| Batch Rename | Rename files in bulk with custom patterns and sequences |
| Cull | Quickly review and select keepers from a shoot |
| Sort by Location | Group photos by GPS coordinates on an interactive map |
| Photo Map | Visualize where your photos were taken |
---
## Tech Stack
| Layer | Technology |
|-------|-----------|
| Framework | Next.js 15 (App Router) |
| Language | TypeScript 5 |
| Styling | Tailwind CSS |
| State | Zustand + Immer |
| Auth | NextAuth.js v4 (Google, GitHub, Magic Link) |
| Database | Neon (PostgreSQL) via Drizzle ORM |
| AI | Google Gemini 1.5 Flash |
| Payments | Stripe |
| Email | Resend |
| Compression | browser-image-compression |
| HEIC | heic-convert / heic2any |
| Batch download | JSZip + file-saver |
| Testing | Playwright (E2E) |
---
<p align="center">
<img src="public/screenshots/tools-dark.png" alt="27 Free Tools" width="100%">
</p>
<details>
<summary><strong>Dashboard</strong></summary>
<img src="public/screenshots/dashboard.png" alt="SammaPix Dashboard" width="100%">
</details>
<details>
<summary><strong>AI Organize</strong></summary>
<img src="public/screenshots/ai-organize.png" alt="AI Organize Tool" width="100%">
</details>
---
## Quick Start
```bash
git clone https://github.com/samma1997/sammapix.git
cd sammapix
npm install
cp .env.local.example .env.local # fill in your keys
npm run dev
```
Open [http://localhost:3000](http://localhost:3000).
Most tools work without any API keys — only AI features require a `GEMINI_API_KEY`.
### Required environment variables
```bash
# Auth
NEXTAUTH_SECRET=
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
# Database
DATABASE_URL= # Neon PostgreSQL connection string
# AI (required for AI tools only)
GEMINI_API_KEY=
# Payments (required for Pro plan only)
STRIPE_SECRET_KEY=
STRIPE_WEBHOOK_SECRET=
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=
STRIPE_PRO_PRICE_ID=
NEXT_PUBLIC_APP_URL=http://localhost:3000
```
---
## Privacy
All image processing tools run entirely in your browser using the Canvas API, WebAssembly, and client-side JavaScript libraries. **Your images are never uploaded to any server.**
For AI tools (AI Rename, AI Alt Text, AI Organize), a small thumbnail is sent to Google Gemini for analysis. Full-resolution originals never leave your device and are never stored anywhere.
---
## Contributing
Contributions are welcome. Please open an issue before submitting a pull request for significant changes.
1. Fork the repo
2. Create a feature branch (`git checkout -b feature/your-feature`)
3. Commit your changes
4. Open a pull request
For bug reports and feature requests, use [GitHub Issues](https://github.com/samma1997/sammapix/issues).
---
## License
MIT — see [LICENSE](./LICENSE) for details.
---
Built by [Luca Sammarco](https://lucasammarco.com) · Live at [sammapix.com](https://www.sammapix.com)
What people ask about sammapix
What is samma1997/sammapix?
+
samma1997/sammapix is mcp servers for the Claude AI ecosystem. Free browser-based image optimization platform — compress, convert WebP, AI rename, HEIC convert, batch resize, 20+ tools. No uploads, 100% private. It has 7 GitHub stars and its last recorded update is dated 2026-09-20.
How do I install sammapix?
+
You can install sammapix by cloning the repository (https://github.com/samma1997/sammapix) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is samma1997/sammapix safe to use?
+
Our security agent has analyzed samma1997/sammapix and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains samma1997/sammapix?
+
samma1997/sammapix is maintained by samma1997. The last recorded GitHub activity is dated 2026-09-20, with 5 open issues.
Are there alternatives to sammapix?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy sammapix to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/samma1997-sammapix)<a href="https://claudewave.com/repo/samma1997-sammapix"><img src="https://claudewave.com/api/badge/samma1997-sammapix" alt="Featured on ClaudeWave: samma1997/sammapix" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ
The fastest path to AI-powered full stack observability, even for lean teams.