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

@postnotion/mcp

v0.2.0

Published

Postnotion MCP server for publishing reviewable HTML docs and pulling comments.

Readme

Post Notion MCP

Post Notion MCP lets coding agents publish HTML docs to Post Notion, get a review URL, pull reviewer feedback, and push the next version to the same URL.

Install From npm

Use the public npm package in MCP clients:

npx -y @postnotion/mcp

Claude Code:

claude mcp add --scope user --transport stdio postnotion -- npx -y @postnotion/mcp

Manual MCP config:

{
  "command": "npx",
  "args": ["-y", "@postnotion/mcp"],
  "env": {
    "POSTNOTION_API_BASE": "https://postnotion.com",
    "POSTNOTION_CONVEX_URL": "https://rugged-hyena-579.convex.cloud"
  }
}

Fresh User Flow

  1. Add the MCP server to your client.
  2. In the agent, call health_check.
  3. If health_check returns needs_auth, call auth_status.
  4. Open the returned verificationUrl, sign in to Post Notion, and approve access.
  5. Call complete_auth with the returned deviceCode.
  6. Call health_check again.
  7. Call list_projects.
  8. Reuse a matching project, or call create_project.
  9. Run check_doc on your HTML.
  10. Call push_doc with project, slug, title, and mode.

After the user reviews the URL, call pull_threads or pull_comments, address the feedback, call resolve_comment or set_status, then call push_doc again with the same slug.

Claude Code From Source

From the repository root:

pnpm --filter @postnotion/mcp build
pnpm --filter @postnotion/mcp install:global

The installer copies the built server to ~/.postnotion/postnotion-mcp.js. If the Claude CLI is installed, it registers the postnotion MCP server. If not, it prints the JSON you can paste into another MCP client.

Source install manual config:

{
  "command": "node",
  "args": ["/Users/you/.postnotion/postnotion-mcp.js"],
  "env": {
    "POSTNOTION_API_BASE": "https://postnotion.com",
    "POSTNOTION_CONVEX_URL": "https://rugged-hyena-579.convex.cloud"
  }
}

health_check reports the active endpoints and credential source without printing the raw key.

Environment

  • POSTNOTION_API_BASE: Post Notion HTTP/API origin. Defaults to https://postnotion.com.
  • POSTNOTION_CONVEX_URL: Convex query/mutation origin. Defaults to the hosted Post Notion deployment.
  • POSTNOTION_API_KEY or POSTNOTION_MCP_API_KEY: Optional. Normally created by auth_status plus complete_auth and saved in ~/.postnotion/config.json.
  • POSTNOTION_CONFIG_PATH: Optional alternate config file path.

Legacy LOOP_API_BASE, LOOP_CONVEX_URL, LOOP_API_KEY, LOOP_MCP_API_KEY, and LOOP_CONFIG_PATH aliases are still accepted for existing source installs.

Optional Media Features

The core review loop does not require the local media pipeline. add_playable uses local audio tooling, and ink OCR uses @huggingface/transformers plus sharp. Run health_check with { "include_media": true } before using add_playable.