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

@this-npm-test-org/connection-notion-mcp

v0.1.3

Published

MCP server for Notion. Read and write pages and databases, search content, and manage properties. API key auth.

Readme

Notion

MCP server for reading and writing Notion pages and databases. Search across your workspace, read page content, create new pages, update database properties, and query database views. Uses Notion API key authentication with configurable access scope.

Useful for managing project trackers, updating wiki pages, querying task databases, creating meeting notes, syncing data into Notion tables, and any workflow that uses Notion as a knowledge base or project management tool.

Install

amodal install mcp notion

Tools exposed

  • search — Full-text search across all pages and databases the integration can access. Returns page ID, title, parent, last edited time, and a content snippet. Supports filtering by object type (page or database).
  • read_page — Read the full content of a Notion page as structured blocks: headings, paragraphs, lists, code blocks, tables, callouts, and embeds. Returns content in a readable format.
  • query_database — Query a Notion database with filters and sorts. Supports filtering by any property type (text, number, select, date, checkbox, relation). Returns rows as structured property maps.
  • create_page — Create a new page in a database or as a child of another page (confirmation required). Supports setting properties and initial content blocks.
  • update_page_properties — Update properties on an existing database page: status, assignee, due date, tags, or any custom property (confirmation required).
  • append_blocks — Append content blocks to an existing page: paragraphs, headings, lists, code blocks, dividers, and callouts (confirmation required).
  • list_databases — List all databases the integration can access with their property schemas.

Configuration

env:
  NOTION_API_KEY: "ntn_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
  • NOTION_API_KEY — Notion internal integration token. Create one at https://www.notion.so/my-integrations. The integration must be added to specific pages/databases to grant access. Required.

Example usage

  • "Search Notion for our incident response procedures"
  • "Query the sprint board for all tasks assigned to me that are in progress"
  • "Create a new page in the Meeting Notes database with today's standup summary"
  • "Update the status of ticket PROJ-142 to Done and set the completion date to today"