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

@mclawnet/mcp-server

v0.1.4

Published

MCP server exposing ClawNet capabilities (skills, memory, evolution, tasks, inbox) to any Model Context Protocol client.

Readme

@mclawnet/mcp-server

MCP server exposing ClawNet capabilities (skills, memory, evolution, tasks, inbox) to any Model Context Protocol client.

The binary clawnet-mcp is registered in package.json#bin and launched by the agent host (or any external MCP client).

Tool groups

  • Skill — discover and execute skills from the local skill manager.
  • Memory — read/write the agent memory store.
  • Evolution — skill evolution telemetry helpers.
  • Task & Inbox — first-class task graph + inter-instance messaging (added in 0.1.4, see below).

Task & Inbox tools

Backed by @mclawnet/task. All tools are project-scoped via a required workDir argument (absolute path to the project working directory). See the design doc docs/plans/2026-04-25-task-as-first-class-design.md.

| Tool | Description | | --- | --- | | task_create | Create a task in the project task store. | | task_get | Fetch a task by id. | | task_list | List tasks with optional swarmId / status / owner filters. | | task_set_status | Update status; cancel auto-unlinks edges and fans out inbox notifications to downstream owners. | | task_set_owner | Set or clear (null) the owner instance id. | | task_add_comment | Append an idempotent comment (auto-uuid if id omitted). | | task_link | Add a blockedBy / blocks edge; rejects self-link, cycles, missing tasks. | | task_unlink | Remove an edge in both directions; no-op if absent. | | task_create_from_message | Spin a task off an inbox message; records origin_message system comment. | | task_briefing | Per-instance situation summary (actionable / awareness / counters / warnings). | | lead_briefing | Queen-facing buckets: assign_owner, assign_reviewer, clarify, repair_dependencies, lead_owned. | | member_briefing | Boot briefing for a worker/queen with hardcoded boot rules + bootstrap context. | | message_send | Durably write an inbox message between two instances within a swarm. |

Fan-out

When a task transitions to a terminal state (e.g. done or cancelled), the server walks its blocks edges and delivers an inbox message via message_send to each downstream task's owner — so newly unblocked work surfaces without the recipient polling.