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

@itsyuimorii/notion-mcp-server

v1.0.1

Published

AI-powered knowledge management with Notion integration and spaced repetition learning system for Claude MCP

Readme

Notion MCP Server

npm version License: MIT

AI-powered knowledge management with Notion integration and spaced repetition learning system.

✨ Features

  • 📝 Auto-save conversations - Save AI Q&A to Notion with intelligent categorization
  • 🔍 Advanced search - Query by date, category, tags, and full-text search
  • 🧠 Spaced repetition - Science-based review scheduling (1/2/4/7/15 days)
  • 📊 Progress tracking - Track mastery levels (⭐-⭐⭐⭐⭐⭐) and review counts

📦 Installation

Option 1: NPM (Recommended)

npm install -g @itsyuimorii/notion-mcp-server

Option 2: From Source

git clone https://github.com/itsyuimorii/notion-mcp-server.git
cd notion-mcp-server
npm install
npm run build

🚀 Quick Start

1. Create Notion Integration

  1. Go to Notion Integrations and create a new integration

Notion Integration Setup

  1. Give your integration a name (e.g., "AI Learning Tracker") and select the appropriate capabilities (read & write)
  2. Copy the "Internal Integration Token" and paste it into your .env file

Notion Integration Token

  1. Share your Notion page with the integration

2. Configure Environment

Create a .env file:

NOTION_API_TOKEN=ntn_your_token_here
NOTION_PARENT_PAGE_ID=your_page_id_here
NOTION_DATABASE_ID=your_database_id_here  # Optional

3. Configure Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "notion-mcp-server": {
      "command": "node",
      "args": ["/path/to/notion-mcp-server/dist/index.js"],
      "env": {
        "NOTION_API_TOKEN": "ntn_your_token",
        "NOTION_PARENT_PAGE_ID": "your_page_id",
        "NOTION_DATABASE_ID": "your_database_id"
      }
    }
  }
}

4. Restart Claude Desktop

You're ready to use it!

🛠️ Available Tools

| Tool | Description | |------|-------------| | notion_setup_database | Create pre-configured database with spaced repetition fields | | notion_ai_save_entry | Save Q&A with auto-categorization and tags | | notion_query_database | Search with filters (date/category/tags) | | notion_check_reviews | Check overdue and upcoming reviews | | notion_update_mastery | Update mastery level and schedule next review |

📁 Project Structure

notion-mcp-server/
├── src/
│   ├── index.ts       # Main MCP server
│   ├── config.ts      # Configuration
│   └── types.ts       # TypeScript types
├── docs/
│   └── images/        # Documentation images
├── QUICKSTART.md      # Detailed setup guide
├── DEMO_SCENARIOS.md  # Usage examples
├── LICENSE            # MIT License
└── package.json       # Dependencies

📚 Documentation

🔧 Requirements

  • Node.js 18+
  • npm 9+
  • Notion account with workspace
  • Claude Desktop (latest version)

🐛 Troubleshooting

Connection failed?

  1. Check .env file has correct token
  2. Run npm run build to generate dist/index.js
  3. Verify path in Claude config
  4. Restart Claude Desktop

Database permission denied?

  1. Go to your Notion page
  2. Click "..." → "Add connections"
  3. Select your integration
  4. Restart Claude Desktop

📄 License

MIT - see LICENSE

🔗 Links


New to this project? Start with QUICKSTART.md 🚀