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

caelus-mcp

v0.11.0

Published

MCP server for caelus chart computation.

Readme

caelus-mcp

MCP server for the caelus ephemeris engine: nine chart tools over stdio. Computation only — positions, houses, aspects with orbs, event search, electional — the model does the interpreting. It needs no API keys, ephemeris files, or network calls; the engine data ships inside the package.

Setup

Any MCP client that speaks stdio:

{
  "mcpServers": {
    "caelus": { "command": "npx", "args": ["caelus-mcp"] }
  }
}
  • Claude Desktopclaude_desktop_config.json
  • Cursor.cursor/mcp.json (project) or ~/.cursor/mcp.json (global)
  • Anything else — spawn npx caelus-mcp and speak JSON-RPC over stdio

Tools

| tool | what it answers | |------|-----------------| | natal_chart | A person's birth chart: 13 bodies with sign, house, retrograde, speed; ASC/MC; cusps; aspects | | current_sky | The sky at a moment and place (defaults to now), not tied to a person | | transits | Transiting planets vs a natal chart: aspects within orb, applying/separating, natal house per body | | synastry | Two charts compared: inter-chart aspects, house overlays both ways | | find_aspect_dates | Exact dates a transiting body aspects a longitude or another body, retrograde re-hits included | | rectification_grid | ASC/MC sweep across a window of hours for birth-time rectification | | sky_events | Rise/set/meridian transits, lunar phases, stations, zodiac crossings in a date range (≤370 days) | | planetary_hours | The planetary hour in effect at a moment and place: ruler, day/night, hour number, start/end, day ruler, and the 24-hour ruler sequence | | void_of_course | Whether the Moon is void-of-course at a moment: its sign, sign-exit time, and next perfecting aspect to Sun–Saturn |

natal_chart and current_sky also tag each body with its solar phase (cazimi/combust/under-the-beams) and each aspect with applying/separating.

Bodies (core chart): sun through pluto, chiron, mean and true node. Optional bodies (mean/true Lilith, asteroids, Uranians) follow engine data on the Node loader path. House systems: twelve total — placidus (default), whole_sign, equal, porphyry, koch, regiomontanus, campanus, alcabitius, morinus, meridian, polich_page, vehlow. Placidus and Koch fall back to whole_sign above the polar circles and say so in the payload. zodiac supports tropical (default) and seven sidereal ayanamsas on chart tools.

Output

Token-frugal JSON: terse keys, positions to 0.01°, a full natal chart is ~3 KB. Each aspect is a structured object the client can use directly:

{ "a": "moon", "b": "venus", "aspect": "trine", "orb": 2.09, "phase": "separating" }

A natal_chart or current_sky response feeds caelus-wheel's <ChartWheel> directly — no adapter:

const payload = JSON.parse(result.content[0].text);
<ChartWheel chart={payload} size={520} />

Dates are UT

Tools take ISO 8601 UTC date-times. Convert local birth times first — the tool descriptions instruct the model to do this, and caelus-birth does it correctly in code (historical tzdb rules, DST edge cases flagged). Longitude is east-positive everywhere; the Americas are negative.

Accuracy

Checked against Swiss Ephemeris across 1900–2099: Sun–Saturn ≤1″, Uranus ≤1.9″, Neptune ≤4.6″, Moon ≤2.5″, Pluto ≤2.5″ (series valid 1885–2099), Chiron ≤1″, mean node ≤1″, true node ≤1′ vs SE's built-in ephemeris, asteroids ≤1″ (Horizons fits), Uranians ≤2.3″. Tables: ephemengine.com/validation.

The caelus packages

Spec and design notes: MCP_SPEC.md.