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

substack-notes-mcp

v1.4.1

Published

MCP server for Substack Notes — create, schedule, manage, fetch notes, and read comments from any Substack author.

Downloads

543

Readme

Substack Notes MCP

Create, schedule, manage, and fetch Substack notes from any AI assistant — Claude Desktop, Claude Code, or Cursor.

Built by Jenny Ouyang.

Setup

1. Get your API token

Go to quickviralnotes.com/settings and generate an MCP API token.

2. Connect your AI assistant

Claude Desktop — add to your claude_desktop_config.json:

{
  "mcpServers": {
    "substack-notes": {
      "command": "npx",
      "args": ["-y", "substack-notes-mcp", "--token", "YOUR_TOKEN"]
    }
  }
}

Claude Code — run:

claude mcp add -s user substack-notes -- npx -y substack-notes-mcp --token YOUR_TOKEN

The -s user flag installs it globally so it's available in all your projects.

Cursor — add to your MCP settings:

{
  "mcpServers": {
    "substack-notes": {
      "command": "npx",
      "args": ["-y", "substack-notes-mcp", "--token", "YOUR_TOKEN"]
    }
  }
}

Or connect directly via Streamable HTTP:

  • URL: https://qvn-mcp.vercel.app/mcp
  • Header: Authorization: Bearer YOUR_TOKEN

Available Tools

| Tool | Description | |------|-------------| | get_notes_dashboard | View published and planned notes with category distributions | | get_published_notes | List your recently published notes | | get_planned_notes | View planned notes and open scheduling slots | | get_unscheduled_notes | Get notes ready to be scheduled | | create_note | Create a new note with HTML content and category | | schedule_note | Set or update the planned date for a note | | unschedule_note | Remove the planned date from a note | | mark_note_published | Mark a note as published with optional Substack URL | | fetch_substack_notes | Fetch published notes from any Substack author or publication (public, no cookies needed) | | fetch_note_comments | Fetch all comments and restacks for a specific note (public, no cookies needed) | | get_hook_templates | Browse 167 proven hook templates for crafting viral note openings | | add_hook_template | Add a new hook template to the library (admin-only) |

Requirements

  • Node.js 18+
  • A Quick Viral Notes account (free accounts can use read-only tools; creating and scheduling notes requires a subscription)

License

MIT