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

font-proof-mcp

v0.1.0

Published

Create and modify Font Proof documents programmatically. Font Proof is a macOS app for type designers that generates PDF font proofs and live-reloads them from Glyphs.app.

Readme

font-proof-mcp

Create and modify Font Proof documents programmatically. Font Proof is a macOS app for type designers that generates PDF font proofs and live-reloads them from Glyphs.app.

This package launches the MCP server that ships inside the Font Proof app bundle. The server lets AI tools create and edit .fontproof documents directly; the app does not need to be running.

Requirements

  • macOS 12 or later
  • Font Proof installed (the server binary ships inside the app)
  • Node.js 18+ (for npx)

Setup

The easiest path is Font Proof's built-in one-click setup: open Font Proof, go to Preferences, then AI Integration, and click the installer for your client. To set it up manually instead:

Claude Code

claude mcp add font-proof -- npx -y font-proof-mcp

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "font-proof": {
      "command": "npx",
      "args": ["-y", "font-proof-mcp"]
    }
  }
}

Cursor

Add the same command / args pair to ~/.cursor/mcp.json.

If Font Proof is installed somewhere other than /Applications or ~/Applications, set FONT_PROOF_MCP_PATH to the full path of Font Proof.app/Contents/Helpers/font-proof-mcp.

Tools

  • Documents: create_proof, create_complete_proof, open_proof, get_proof_info, open_in_app
  • Sections: add_section, update_section, delete_section, reorder_sections, duplicate_section, set_section_content_bulk, update_section_settings
  • Fonts: add_fonts, remove_fonts, list_system_fonts (variable font axes supported)
  • Glyphs 3: list_glyphs_fonts, add_glyphs_fonts

Full documentation: fontproof.com/docs under "MCP Server".

How it works

The MCP server is a Swift binary embedded in the Font Proof app at Contents/Helpers/font-proof-mcp, codesigned with the app and always in sync with the app's document format. This package is a thin launcher: it finds that binary and hands over stdio. No server logic is duplicated here, so the tools you get always match the app version you have installed.


Font Proof is made by Minim Industries.