juergenkoller-software/distill-mcp

πŸ“‚ File Systems
0 Views
0 Installs

🏠 🍎 - MCP bridge for Distill β€” AI file renamer that analyzes content (PDF/OCR/Office/email/media) and renames files with descriptive names. Five AI providers (Claude, OpenAI, Gemini, Ollama, Apple Intelligence), pay-per-use credits, folder monitoring, 9 MCP tools.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "juergenkoller-software-distill-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "juergenkoller-software-distill-mcp"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

Distill MCP Server

Swift Platform License MCP juergenkoller-software/distill-mcp MCP server

Let Claude, Cursor, or any MCP client rename files for you β€” automatically, based on content.

This is the official Model Context Protocol bridge for Distill β€” a native macOS app that uses AI (Claude, OpenAI, Gemini, Ollama, or Apple Intelligence) to read your files and rename them with descriptive, consistent names. No more IMG_4521.jpg or Scan_003.pdf β€” get 250401 Invoice Telekom.pdf instead.

You need the Distill app installed and running. This MCP server is a stdio→HTTP bridge — the actual file analysis happens in the app. Get Distill at store.juergenkoller.software/apps/distill.


What you can do

"Claude, look at the 47 PDFs in ~/Downloads, rename them based on content, but show me the suggestions first."

The MCP server exposes 9 tools:

ToolWhat it does
rename_filesAnalyze file content with AI and rename with descriptive names
suggest_namesSuggest new names without renaming (preview mode)
revert_renameUndo a previous rename
get_rename_historyShow the rename history (timestamps, before/after, AI provider used)
watch_folderAdd a folder to auto-monitoring (new files get renamed in the background)
app_statusCurrent state, AI provider, credits left, watched folders
set_providerSwitch AI provider β€” Claude, OpenAI GPT-4o, Gemini, Ollama (local), Apple Intelligence
get_rulesShow naming rules (date format, casing, categories, custom templates)
set_rulesUpdate naming rules

Distill reads PDFs, images (via OCR), Office documents, emails, HTML, RTF, and media files. It extracts date, category, description, sender, and amounts β€” then builds filenames using your configurable rules.


Installation

Prerequisites

  1. macOS 14 (Sonoma) or later
  2. Distill app installed and running β€” get it here (free, pay-per-use credits start at €1.99 / 100 renames)
  3. Swift 5.9+ (Xcode 15+) if building from source

Build from source

git clone https://github.com/juergenkoller-software/distill-mcp.git
cd distill-mcp
swift build -c release
# Binary: .build/release/DistillMCP

Pre-built binary

Grab the latest DistillMCP from Releases.


Configuration

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "distill": {
      "command": "/path/to/DistillMCP",
      "env": {
        "DISTILL_PORT": "22200",
        "DISTILL_TOKEN": "your-token-here"
      }
    }
  }
}

Find DISTILL_TOKEN in Distill β†’ Settings β†’ API & MCP.

Claude Code

claude mcp add distill /path/to/DistillMCP \
  --env DISTILL_PORT=22200 \
  --env DISTILL_TOKEN=your-token-here

Cursor / other MCP clients

Same pattern β€” DistillMCP is a stdio MCP server, configured via the two env vars above.


How it works

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”  JSON-RPC stdio   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”  HTTP+Bearer   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  Claude/Cursor β”‚ ───────────────►  β”‚  DistillMCP    β”‚ ─────────────► β”‚  Distill.app   β”‚
β”‚  (MCP client)  β”‚ ◄───────────────  β”‚   (this repo)  β”‚ ◄───────────── β”‚  (port 22200)  β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜                   β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜                β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

The bridge reads JSON-RPC 2.0 requests from stdin, forwards them to Distill's local HTTP server at 127.0.0.1:22200/mcp, and writes responses back to stdout. All AI calls (Claude/OpenAI/Gemini/Ollama/Apple Intelligence), file reading (OCR, PDF extraction, Office parsing), credit tracking, and naming logic happen inside the Distill app.

This split lets the wire format stay open-source (audit it, sandbox it, run it through any MCP runtime) while the heavy lifting stays in the app.


Environment variables

VariableDefaultDescription
DISTILL_PORT22200Port of Distill's local HTTP server
DISTILL_TOKEN(none)Bearer token from Distill Settings (required)

Errors and trace logs go to stderr so they don't pollute the JSON-RPC stdout channel.


About Distill

Distill is an AI file manager for macOS that automatically renames files based on content analysis. Highlights:

  • No subscription β€” free app, pay-per-use credits (100 free / 100 for €1.99 / 400 for €4.99 / 1,000 for €8.99)
  • Five AI providers β€” Claude, OpenAI GPT-4o, Google Gemini, Ollama (local, no API needed), Apple Intelligence
  • Reads everything β€” PDFs, images (OCR), Office docs, emails, HTML, RTF, media files
  • Local-only mode with Ollama β€” nothing leaves your Mac
  • Configurable NameBuilder β€” date formats, casing, categories, custom templates
  • Folder monitoring β€” drop files in, get them renamed automatically
  • REST API + Swagger UI β€” for non-MCP automation
  • MCP server (this repo) β€” for Claude/AI agents
  • Available on Mac App Store + direct download

β†’ Get Distill at store.juergenkoller.software


License

MIT β€” see LICENSE. Bridge is open source; the Distill app is commercial (free-to-try with pay-per-use credits).

Issues & support

Built by Juergen Koller Software GmbH.

Related MCP Servers

modelcontextprotocol/server-filesystemVerified

πŸ“‡ 🏠 - Direct local file system access.

πŸ“‚ File Systems1 views
8b-is/smart-tree

πŸ¦€ 🏠 🍎 πŸͺŸ 🐧 - AI-native directory visualization with semantic analysis, ultra-compressed formats for AI consumption, and 10x token reduction. Supports quantum-semantic mode with intelligent file categorization.

πŸ“‚ File Systems0 views
aadilr/changethisfile-mcp

πŸ“‡ ☁️ - Free file conversion between 690+ formats. Tools: convertfile (URL or base64 in β†’ signed download URL out) and listconversions. Covers image, video, audio, document, data, font, ebook, and archive formats. No auth or signup required; remote streamable-HTTP endpoint available (see README).

πŸ“‚ File Systems0 views
alebgl77/ftp-deploy-mcp

πŸ“‡ 🏠 🍎 πŸͺŸ 🐧 - Deploy files from AI agents to your own FTP/FTPS/SFTP servers β€” multi-server config, recursive deploy with dry-run and gitignore-like excludes, per-server path jail and read-only mode, FileZilla import, one-command setup for popular MCP clients.

πŸ“‚ File Systems0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it β†’
β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.