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

@neo-reckoning/mcp

v0.1.0

Published

MCP server for calendar computation. Analyze schedules, find conflicts, free time, and suggest optimizations — powered by @neo-reckoning/core.

Downloads

525

Readme

@neo-reckoning/mcp

MCP server for calendar computation. Analyze schedules, find conflicts, free time, and suggest optimizations — powered by @neo-reckoning/core.

Works with any MCP client that supports stdio transport, including Claude Desktop, Claude Code, Codex, and similar tools.

What this does

Neo-reckoning MCP exposes calendar analysis and schedule optimization as MCP tools:

  • Load .ics calendar data or native DateRange[] JSON into a session
  • Analyze conflicts, free time, next-available slots, and day-level detail
  • Score a schedule for conflicts, focus time, and context switches
  • Preview and apply schedule changes in-session
  • Export the current session back to .ics

Quick start

Run the server over stdio:

npx @neo-reckoning/mcp

Your MCP client will start the process and communicate over stdin/stdout.

Configuration

Claude Desktop

Add this to claude_desktop_config.json:

{
  "mcpServers": {
    "neo-reckoning": {
      "command": "npx",
      "args": ["-y", "@neo-reckoning/mcp"],
      "env": {}
    }
  }
}

Claude Code

Add this to your project .mcp.json:

{
  "mcpServers": {
    "neo-reckoning": {
      "command": "npx",
      "args": ["-y", "@neo-reckoning/mcp"],
      "env": {}
    }
  }
}

Codex

Add this to ~/.codex/config.toml:

[mcp_servers.neo_reckoning]
command = "npx"
args = ["-y", "@neo-reckoning/mcp"]

Tools

  • load_calendar — Load .ics text or JSON-encoded DateRange[] into the current session.
  • load_calendar_file — Load an .ics file from an absolute path on disk.
  • find_conflicts — Find overlapping timed events across loaded calendars in a date window.
  • find_free_slots — Find open time on a specific day within working-hour bounds.
  • find_next_free_slot — Find the next available slot of a required duration across a date window.
  • score_schedule — Score a schedule for conflicts, free time, focus blocks, and context switches.
  • day_detail — Return timed slots and all-day ranges for a specific date.
  • expand_range — Expand one stored DateRange into concrete occurrences within a window.
  • list_calendars — List loaded calendars, range counts, and sample labels.
  • suggest_changes — Preview proposed schedule edits with before/after scoring and conflict counts.
  • apply_changes — Apply proposed edits to the current in-memory session.
  • generate_ics — Export loaded calendar data as .ics text.

Workflow

The server is designed for an iterative scheduling loop:

  1. Load calendar data with load_calendar or load_calendar_file
  2. Analyze the current schedule with tools like find_conflicts, find_free_slots, day_detail, and score_schedule
  3. Suggest candidate rearrangements with suggest_changes
  4. Apply the chosen edits with apply_changes
  5. Export the updated session with generate_ics

Session model

Calendar data persists for the conversation session. Load it once, then query it many times across multiple tool calls.

  • Multiple calendars can be loaded and analyzed together
  • Tools can target all loaded calendars or a selected subset
  • apply_changes mutates only the current session state
  • generate_ics exports the ranges currently stored in-session

Window auto-detection

When you load .ics data without an explicit parse window, the server starts with a default recent-to-near-future window. If that requested window does not overlap the actual data well, the server scans VEVENT date fields, detects where the calendar data lives, and reparses using that detected window when it yields more results.

This makes old archives, school terms, and seasonal calendars load more reliably without forcing the client to guess the right window up front.

License

MIT