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

onenote-mcp

v0.1.0-rc.1

Published

Model Context Protocol (MCP) server scaffold for Microsoft OneNote via OAuth

Readme

OneNote MCP Server

CI Coverage Status CodeQL npm version npm downloads License Node

A Model Context Protocol (MCP) server for Microsoft OneNote, authenticated via OAuth. Provides full read/write access to notebooks, sections, and pages through 16 tools, 5 resources, and 3 prompt templates.

Quick Start

Prerequisites

  • Node.js v22 or higher
  • A Microsoft Entra app registration with OAuth enabled
  • Client ID and client secret for your app registration

Step 1: Register an OAuth App

  1. Open Microsoft Entra App registrations in Azure Portal
  2. Create (or select) an application
  3. Add a redirect URI: http://localhost:3000/callback
  4. Create a client secret
  5. Copy Application (client) ID and client secret

Step 2: Configure Your MCP Client

Claude Desktop (Recommended)

Add to your claude_desktop_config.json:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "onenote": {
      "command": "npx",
      "args": ["-y", "onenote-mcp"],
      "env": {
        "ONENOTE_OAUTH_CLIENT_ID": "your-client-id",
        "ONENOTE_OAUTH_CLIENT_SECRET": "your-client-secret"
      }
    }
  }
}

Claude Code (CLI)

{
  "mcpServers": {
    "onenote": {
      "command": "npx",
      "args": ["-y", "onenote-mcp"],
      "env": {
        "ONENOTE_OAUTH_CLIENT_ID": "your-client-id",
        "ONENOTE_OAUTH_CLIENT_SECRET": "your-client-secret"
      }
    }
  }
}

Cursor

{
  "mcpServers": {
    "onenote": {
      "command": "npx",
      "args": ["-y", "onenote-mcp"],
      "env": {
        "ONENOTE_OAUTH_CLIENT_ID": "your-client-id",
        "ONENOTE_OAUTH_CLIENT_SECRET": "your-client-secret"
      }
    }
  }
}

Step 3: First-Time Authorization

On first use, the server will:

  1. Print an OAuth authorization URL to stderr
  2. Wait for you to open the URL in your browser
  3. Receive the callback at localhost
  4. Cache tokens locally for reuse and refresh

Transport Mode

This server uses STDIO transport exclusively.

Tools

The server exposes 16 tools for interacting with OneNote:

| Tool | Description | | ------------------------ | ------------------------------------------------------------------- | | list-notebooks | List all notebooks accessible to the authenticated user | | get-notebook | Get detailed information about a specific notebook | | list-section-groups | List section groups in a notebook or across all notebooks | | get-section-group | Get details of a specific section group including its sections | | list-sections | List sections in a notebook, section group, or across all notebooks | | get-section | Get detailed information about a specific section | | create-section | Create a new section in a notebook or section group | | list-pages | List pages in a specific section | | get-page | Get metadata for a specific page (title, timestamps, parent info) | | get-page-content | Get the full HTML content of a page | | get-page-preview | Get a short text preview of a page (up to 300 characters) | | create-page | Create a new page in a section with HTML content | | update-page | Update page content using JSON patch commands | | delete-page | Permanently delete a page | | search-pages | Search pages by keyword across titles and content | | get-notebook-hierarchy | Get the complete notebook/section-group/section tree in one call |

Resources

The server exposes 5 resources for direct data access:

| Resource | URI | Description | | ------------------- | ------------------------------------------- | -------------------------------------------------------- | | notebooks-list | onenote://notebooks | List of all notebooks | | notebook | onenote://notebooks/{notebookId} | A specific notebook with its sections and section groups | | notebook-sections | onenote://notebooks/{notebookId}/sections | Sections in a specific notebook | | section-pages | onenote://sections/{sectionId}/pages | Pages in a specific section | | page-content | onenote://pages/{pageId} | The HTML content of a specific page |

Prompts

The server includes 3 prompt templates for common workflows:

| Prompt | Description | | ---------------- | ------------------------------------------------------------------- | | summarize-page | Fetch and summarize the content of a specific OneNote page | | search-notes | Guide through a search workflow across OneNote notes | | create-note | Guide through creating a new page in the right notebook and section |

Configuration Reference

| Variable | Required | Default | Description | | ---------------------------------- | -------- | --------------------------------------------------------- | -------------------------------------- | | ONENOTE_OAUTH_CLIENT_ID | Yes* | - | OAuth client ID | | ONENOTE_OAUTH_CLIENT_SECRET | Yes* | - | OAuth client secret | | ONENOTE_ACCESS_TOKEN | No | - | Manual token override (bypasses OAuth) | | ONENOTE_OAUTH_TENANT | No | common | OAuth tenant selector | | ONENOTE_OAUTH_REDIRECT_URI | No | http://localhost:3000/callback | OAuth callback URI | | ONENOTE_OAUTH_SCOPES | No | offline_access openid profile User.Read Notes.ReadWrite | Space-delimited OAuth scopes | | ONENOTE_TOKEN_STORE_PATH | No | platform default | Token cache file path | | ONENOTE_OAUTH_AUTHORITY_BASE_URL | No | https://login.microsoftonline.com | OAuth authority base override | | ONENOTE_GRAPH_BASE_URL | No | https://graph.microsoft.com/v1.0 | Graph API base override |

* Required unless ONENOTE_ACCESS_TOKEN is set.

Features

  • 16 MCP tools for full OneNote read/write access (notebooks, sections, pages)
  • 5 MCP resources for direct data access via URI templates
  • 3 MCP prompt templates for common workflows (summarize, search, create)
  • OAuth authorization code flow with automatic token refresh
  • Secure token cache with platform-specific default locations
  • Microsoft Graph API client with error handling and pagination
  • Security hardening (CodeQL, dependency review, Scorecard, SBOM)
  • CI/CD with automated release and npm trusted publishing

Development

Setup

# Clone the repo
git clone https://github.com/jacob-hartmann/onenote-mcp.git
cd onenote-mcp

# Use Node.js 22
# (macOS/Linux nvm): nvm install && nvm use
# (Windows nvm-windows): nvm install 22 && nvm use 22

# Install dependencies
pnpm install

# Copy env template
cp .env.example .env

Running Locally

# Development mode (auto-reload)
pnpm dev

# Production build
pnpm build

# Production run
pnpm start

Debugging

# Run from source
pnpm inspect

# Run from built output
pnpm inspect:dist

Contributing

See CONTRIBUTING.md.

Security

See SECURITY.md.

Support

See SUPPORT.md.

License

MIT — see LICENSE.