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

@iflow-mcp/king-proplan-project-planner

v1.0.12

Published

MCP server for Claude Code — persistent project memory, session continuity, and structural repo analysis

Downloads

70

Readme

ProPlan MCP

Persistent project memory and session continuity for Claude Code. Never lose context between sessions.

What it does

  • Remembers your project — phases, milestones, tasks, and progress survive across sessions
  • Resumes automatically — Claude picks up exactly where you left off
  • Scans your repo — run scan_repo once and Claude understands your codebase
  • Works offline — SQLite local mode, no account required
  • Syncs to dashboard — optional cloud sync to proplan.dev

Quick start

npx @proplandev/mcp init

That's it. The wizard:

  • Writes .mcp.json so Claude Code finds the server
  • Writes CLAUDE.md with session resume instructions
  • Updates .gitignore to protect local data
  • Auto-adds all ProPlan tools to Claude settings (skips approval prompts)

Then restart Claude Code, open your project, and type start or continue.

Tools

| Tool | What it does | |---|---| | get_project_status | List projects or get full status + session handoff | | create_project | Create a new project with phases, milestones, tasks | | scan_repo | Analyze codebase structure and auto-generate a roadmap | | get_project_roadmap | Full roadmap JSON | | get_tasks | Tasks filtered by status, milestone, or phase | | get_next_tasks | What to work on next | | update_task_status | Mark tasks pending / in_progress / completed | | add_note_to_task | Attach notes to a task | | add_task | Add a task to a milestone | | edit_task | Edit task title or description | | delete_task | Delete a task | | add_milestone | Add a milestone to a phase | | edit_milestone | Rename a milestone | | delete_milestone | Delete a milestone and its tasks | | add_phase | Add a phase to the roadmap | | edit_phase | Rename a phase | | delete_phase | Delete a phase and its milestones | | rename_project | Rename a project | | delete_project | Permanently delete a project | | set_project_goal | Set the north-star goal for a project | | add_session_summary | Record what was done this session (auto-syncs if token cached) | | export_to_cloud | Sync local projects to the ProPlan dashboard | | import_from_cloud | Pull a project from the dashboard into local SQLite |

Storage

Local (default) — data stored in .project-planner/db.sqlite in your project. No account needed. Everything stays on your machine.

Sync to dashboard — run export_to_cloud from Claude Code at any time to push your projects to proplan.dev. Requires a free account and MCP token from Settings → Claude Code Integration.

Import from dashboard — if you created a project on the dashboard first, run import_from_cloud to pull it into your local SQLite and start tracking it in Claude Code.

Manual setup

If you prefer to configure .mcp.json yourself:

{
  "mcpServers": {
    "project-planner": {
      "command": "npx",
      "args": ["-y", "@proplandev/mcp"]
    }
  }
}

Requirements

  • Node.js 18+
  • Claude Code (or any MCP-compatible client)