Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Humanumbers

FreeNot checked

Stop letting your LLM speak in raw numbers — humanize specs, metrics, and measurements via MCP, API, or Python

GitHubEmbed

About

Stop letting your LLM speak in raw numbers — humanize specs, metrics, and measurements via MCP, API, or Python

README

Make numeric language stop sounding like a spreadsheet.

Humanumbers is a Python package and API for turning rigid numeric text into phrasing that feels more human without losing the meaning of the original value. It supports direct API usage, MCP integration, and local tool flows for agent stacks.

The published package name is humanumbers. The Python module name is humanumbers.

What lives here

  • Core runtime: src/humanumbers/service.py
  • HTTP API: src/humanumbers/app.py
  • MCP server: src/humanumbers/mcp_server.py
  • Product launcher: run.py
  • Demo flows: demo/tool, demo/mcp
  • Website frontend: ws/

If you are splitting this into separate repos for PyPI, Python source, and the website, start with docs/publishing-guide.md.

Why Humanumbers exists

Most systems store exact numeric values. Most LLMs then repeat those values exactly, even when the result sounds stiff, robotic, or over-precise for real human communication.

Humanumbers gives you a controlled middle layer:

  • parse the incoming numeric text
  • preserve the unit meaning
  • apply explicit rounding or benchmark comparison rules
  • emit variants that sound more natural in the target language

Quick start

export PROJECT_ROOT=<path-to-humanumbers>
cd "$PROJECT_ROOT"
python3 -m venv .venv
source .venv/bin/activate
pip install -U pip
pip install -e .

If you need MCP support:

pip install -e .[mcp]

Optional install straight from GitHub:

pip install "humanumbers[mcp] @ git+https://github.com/<org>/<repo>.git"

Run the product

API only

python run.py

API + MCP on the same process

python run.py --mcp

Custom bind

python run.py --host 0.0.0.0 --port 8000 --mcp --mcp-path /mcp

Direct entrypoints are also installed:

humanumbers-api
humanumbers-mcp

Production note: CORS

If the website and API are deployed on different origins, configure the API allowlist explicitly:

HUMANUMBERS_CORS_ORIGINS=https://humanumbers.resultity.com

For the split-domain production setup:

  • frontend: https://humanumbers.resultity.com
  • API: https://api-humanumbers.resultity.com

Demos

Humanumbers ships with two demo paths.

Local tool demo

This path does not require a running API or MCP server.

pip install -r demo/tool/requirements.txt
cd demo/tool
python run_demo.py

MCP demo

This path launches the Humanumbers MCP server from the package and lets the model call tools over stdio.

pip install -r demo/mcp/requirements.txt
cd demo/mcp
python run_demo.py

Separate publication surfaces

This monorepo currently contains three surfaces:

  1. The Python package for PyPI.
  2. The Python source repository.
  3. The standalone website for Vercel.

The exact split workflow is documented in docs/publishing-guide.md.

from github.com/resultity/humanumbers

Install Humanumbers in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install humanumbers

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add humanumbers -- uvx humanumbers

Step-by-step: how to install Humanumbers

FAQ

Is Humanumbers MCP free?

Yes, Humanumbers MCP is free — one-click install via Unyly at no cost.

Does Humanumbers need an API key?

No, Humanumbers runs without API keys or environment variables.

Is Humanumbers hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Humanumbers in Claude Desktop, Claude Code or Cursor?

Open Humanumbers on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Humanumbers with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All ai MCPs