npm font-proof-mcpstdioMITupdated 24d ago
Create and modify Hellbox documents programmatically. Hellbox (formerly Font Proof) is a macOS app for type designers that generates PDF font proofs and live-reloads them from Glyphs and RoboFont.
What can you do with font proof mcp?
font-proof-mcp
Create and modify Hellbox documents programmatically. Hellbox (formerly Font Proof) is a macOS app for type designers that generates PDF font proofs and live-reloads them from Glyphs and RoboFont.
This package launches the MCP server that ships inside the Hellbox 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
- Hellbox installed (the server binary ships inside the app)
- Node.js 18+ (for
npx)
Setup
The easiest path is Hellbox's built-in one-click setup: open Hellbox, 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 Hellbox is installed somewhere other than /Applications or ~/Applications, set FONT_PROOF_MCP_PATH to the full path of Hellbox.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: hellbox.com/docs under "MCP Server".
How it works
The MCP server is a Swift binary embedded in the Hellbox 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.
The package keeps the font-proof-mcp name from the app's Font Proof era; the npm name, the server name MCP clients see, and the .fontproof file extension are all stable across the rename.
Hellbox is made by Minim Industries.
Install
Add font proof mcp to your client. Pick the one you use.
claude mcp add font-proof-mcp -- npx -y font-proof-mcpcodex mcp add font-proof-mcp -- npx -y font-proof-mcpamp mcp add font-proof-mcp -- npx -y font-proof-mcp{
"mcpServers": {
"font-proof-mcp": {
"command": "npx",
"args": [
"-y",
"font-proof-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"font-proof-mcp": {
"command": "npx",
"args": [
"-y",
"font-proof-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"font-proof-mcp","command":"npx","args":["-y","font-proof-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"font-proof-mcp": {
"command": "npx",
"args": [
"-y",
"font-proof-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"font-proof-mcp": {
"command": "npx",
"args": [
"-y",
"font-proof-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"font-proof-mcp": {
"command": "npx",
"args": [
"-y",
"font-proof-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"font-proof-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"font-proof-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"font-proof-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"font-proof-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y font-proof-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation18/25
- Maintenance19/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 17 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.0Latest | Jun 12, 2026 |