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

ultimath-mcp

v0.2.0

Published

Stop hallucinating numbers. MCP server for Ultimath: math on multiple independent engines, in parallel.

Downloads

974

Readme

Ultimath MCP

Stop hallucinating numbers. An MCP server that runs every math expression through five independent numeric engines in parallel and returns all five results side by side — so when they disagree, you know the answer is numerically unreliable.

The five engines:

| Engine | What it does | | ----------------- | ------------------------------------------------- | | Multiprecision | High-precision arbitrary-digit arithmetic | | Exact decimal | Exact base-10 arithmetic | | IEEE-754 double | Standard hardware floating point | | Interval | Rigorous lower/upper bounds (guaranteed enclosure)| | Binary point | Arbitrary-precision binary, exact integer mantissa|

Tools

  • evaluate — evaluate an expression on all five engines and compare. Supports arithmetic, trig (sin, cos, tan), exp/log (exp, ln, log), roots and powers (sqrt, x^y), factorial, complex numbers (3+2i), alternate bases (0xFF, 0b1010), and constants (pi, e, golden ratio PHI).
  • list_functions — list every function the engines expose (name, arity, category, description). Optionally filter by category.

Multiplication must be explicit: write 2*pi, 2*sin(x), (a+b)*(c+d). Adjacency is not a product (2pi is an error). Expressions are purely mathematical — no type casts or constructors; write a complex number as 1+2i.

Setup

  1. Get a free API key at https://ultimath.ai.
  2. Add the server to your MCP client config (example for Claude Desktop):
{
  "mcpServers": {
    "ultimath": {
      "command": "npx",
      "args": ["-y", "ultimath-mcp"],
      "env": {
        "ULTIMATH_API_KEY": "your_api_key_here"
      }
    }
  }
}

That's it — npx fetches and runs the server on demand.

Requirements

  • Node.js ≥ 18
  • An Ultimath API key (ULTIMATH_API_KEY)

Links

  • Website: https://ultimath.ai
  • Source: https://github.com/Flupke68/ultimath-mcp

Under the hood

Ultimath's engines build on FLINT/Arb, GMP/MPFR, MPFI, NTL and Boost — full credits at https://ultimath.ai/credits.

Privacy

Ultimath stores only a hash of your API key and basic usage metrics to run and secure the service; expressions are evaluated, not retained for training. Full policy: https://ultimath.ai/privacy/

License

MIT