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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@uor-foundation/mcp-server

v0.1.0

Published

MCP server for Mathematical Universe - enabling Claude integration

Readme

Mathematical Universe MCP Server

This MCP (Model Context Protocol) server provides Claude with direct access to the Mathematical Universe, enabling exploration of the computational substrate where mathematics computes itself into existence.

Installation

cd apps/mcp-server
npm install
npm run build

Usage with Claude

Add to your Claude configuration:

{
  "mcpServers": {
    "math-universe": {
      "command": "node",
      "args": ["/path/to/math-ts/apps/mcp-server/dist/index.js"]
    }
  }
}

Available Tools

Core Tools

analyze_number

Perform complete Mathematical Universe analysis on any number.

Parameters:

  • number: The number to analyze (string or number)

Example:

analyze_number(77)

Returns field patterns, resonance, topology information, and denormalization artifacts.

find_primes

Discover prime numbers (computational atoms) in a range using field pattern analysis.

Parameters:

  • start: Start of range
  • end: End of range
  • limit: Maximum primes to return (default: 100)

factorize

Decompose numbers into prime factors using field-based analysis.

Parameters:

  • number: Number to factorize

Shows field reconstruction and denormalization artifacts from the factorization process.

explore_patterns

Discover patterns in number sequences.

Parameters:

  • start: Starting number
  • count: How many numbers to analyze (default: 20)
  • pattern: Type of pattern to explore ("resonance", "fields", "stability", "lagrange")

Advanced Tools

resonance_landscape

Explore the multi-dimensional resonance landscape around a number.

Parameters:

  • center: Center point for analysis
  • radius: Radius of exploration (default: 10)
  • dimensions: Dimensions to explore (["arithmetic", "field", "page"])

lagrange_navigation

Navigate through number space via Lagrange stability points.

Parameters:

  • start: Starting position
  • target: Target position
  • maxHops: Maximum navigation hops (default: 10)

field_archaeology

Excavate deep field patterns and denormalization artifacts.

Parameters:

  • number: Number to excavate
  • depth: Excavation depth ("surface", "deep", "quantum")

universe_health

Check Mathematical Universe system health and consistency.

Parameters:

  • checkType: Type of check ("quick", "full", "conservation")

Mathematical Concepts

  • Numbers are programs: Each integer has an 8-dimensional field activation pattern
  • Arithmetic is compilation: Operations create field interference and denormalization
  • Primes are atoms: Prime numbers are computational atoms with low resonance
  • Lagrange points: Stability wells at positions 0, 1, 48, 49, and every 48 numbers

Development

# Run tests
npm test

# Development mode
npm run dev

# Build
npm run build

# Type checking
npm run typecheck

Integration Example

When Claude has access to this MCP server, you can explore the Mathematical Universe:

Human: What makes 77 special in the Mathematical Universe?