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

differino-mcp

v0.2.0

Published

MCP server for Differino document comparison

Readme

differino-mcp

MCP (Model Context Protocol) server for Differino -- compare PDF, DOCX, and TXT documents from any AI agent.

Setup

1. Install

cd mcp
npm install
npm run build

Or install globally:

npm install -g differino-mcp

2. Configure

Set environment variables:

export DIFFERINO_EMAIL="[email protected]"
export DIFFERINO_PASSWORD="your-password"
export SUPABASE_URL="https://your-project.supabase.co"
export SUPABASE_ANON_KEY="your-anon-key"

| Variable | Required | Description | |----------|----------|-------------| | DIFFERINO_EMAIL | Yes | Your Differino account email | | DIFFERINO_PASSWORD | Yes | Your Differino account password | | SUPABASE_URL | Yes | Supabase project URL (also accepts DIFFERINO_SUPABASE_URL) | | SUPABASE_ANON_KEY | Yes | Supabase anon/public key (also accepts DIFFERINO_SUPABASE_ANON_KEY) | | DIFFERINO_URL | No | Base URL for the web app (default: https://differino.com) |

3. Add to Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "differino": {
      "command": "node",
      "args": ["/path/to/comparadocs/mcp/dist/index.js"],
      "env": {
        "DIFFERINO_EMAIL": "[email protected]",
        "DIFFERINO_PASSWORD": "your-password",
        "SUPABASE_URL": "https://your-project.supabase.co",
        "SUPABASE_ANON_KEY": "your-anon-key"
      }
    }
  }
}

Or if installed globally via npm:

{
  "mcpServers": {
    "differino": {
      "command": "npx",
      "args": ["differino-mcp"],
      "env": {
        "DIFFERINO_EMAIL": "[email protected]",
        "DIFFERINO_PASSWORD": "your-password",
        "SUPABASE_URL": "https://your-project.supabase.co",
        "SUPABASE_ANON_KEY": "your-anon-key"
      }
    }
  }
}

Tools

compare_documents

Compare two local files and get a diff summary.

Parameters:

  • file_a_path (required) -- Absolute path to the original document
  • file_b_path (required) -- Absolute path to the modified document
  • accuracy_mode (optional) -- fast, balanced (default), or thorough

The tool uploads both files, waits for text extraction and diff computation, and returns a summary with added/removed/modified block counts plus a link to the full visual comparison.

Files under 4 MB are uploaded directly. Larger files use a signed-URL flow that bypasses Vercel's body size limit.

get_comparison

Check the status and results of a comparison by its UUID.

list_comparisons

List recent comparisons in your workspace (default: 10).

list_documents

List documents in your Differino library (default: 20).

get_credits

Check your credit balance, current plan, and free comparison usage for the month.

Supported Formats

  • PDF (.pdf)
  • Word (.docx)
  • Plain Text (.txt)

Credits

3 free comparisons per month. After that, each comparison costs 1 credit. Buy credit packs at differino.com/pricing.