Skip to main content
Glama
ItsikBin

onenote_mcp_server

by ItsikBin

OneNote MCP Server

A Model Context Protocol (MCP) server that connects GitHub Copilot (and other MCP-compatible AI tools) to Microsoft OneNote for Business via the Microsoft Graph API.

Features

Tool

Description

list_notebooks

List all OneNote notebooks accessible to the configured service account

list_sections

List sections in a notebook

create_section

Create a new section in a notebook

create_page

Create a new page in a section (HTML content)

update_page

Update an existing page with patch commands

get_page

Retrieve a page's HTML content

Related MCP server: OneNote MCP Server

Prerequisites

  • Node.js 18 or later

  • A Microsoft 365 / Office 365 work or school account

  • An Azure AD app registration with a client secret and application permissions (one-time setup, free, takes ~5 minutes)


Step 1 — Register an Azure AD App

This is a one-time setup. You need an Azure account that has access to your organisation's Azure AD.

  1. Go to https://entra.microsoft.com and sign in.

  2. Navigate to Identity → Applications → App registrationsNew registration.

  3. Fill in:

    • Name: OneNote MCP Server (or any name you prefer)

    • Supported account types: Single tenant is recommended for background-service access.

  4. Click Register.

  5. On the app overview page, copy:

    • Application (client) ID → this is your ONENOTE_CLIENT_ID

    • Directory (tenant) ID → this is your ONENOTE_TENANT_ID

  6. Go to Certificates & secretsNew client secret and copy the secret value.

  7. Go to API permissionsAdd a permissionMicrosoft GraphApplication permissions.

  8. Add Notes.ReadWrite.All.

  9. Click Grant admin consent for your tenant.


Step 2 — Install the MCP Server

# Clone or download this repository, then:
cd onenote-mcp-server
npm install
npm run build

Step 3 — Use from GitHub in any project (no local clone required)

After you push this repo to GitHub, you can reference it directly from MCP host configs:

{
  "servers": {
    "onenote": {
      "command": "npx",
      "args": ["-y", "github:<YOUR_GITHUB_USERNAME>/onenote_mcp_server"],
      "env": {
        "ONENOTE_CLIENT_ID": "your-client-id-from-step-1",
        "ONENOTE_TENANT_ID": "your-tenant-id",
        "ONENOTE_CLIENT_SECRET": "your-client-secret",
        "ONENOTE_USER_PRINCIPAL_NAME": "service-account@yourtenant.com"
      }
    }
  }
}

Replace <YOUR_GITHUB_USERNAME>/onenote_mcp_server with your actual GitHub repo path. The prepare script builds TypeScript automatically when the package is installed from GitHub.


Step 4 — Configure GitHub Copilot Desktop

Edit .vscode/mcp.json in this project (already provided) and fill in your values:

{
  "servers": {
    "onenote": {
      "command": "node",
      "args": ["/absolute/path/to/onenote-mcp-server/build/index.js"],
      "env": {
        "ONENOTE_CLIENT_ID": "your-client-id-from-step-1",
        "ONENOTE_TENANT_ID": "your-tenant-id",
        "ONENOTE_CLIENT_SECRET": "your-client-secret",
        "ONENOTE_USER_PRINCIPAL_NAME": "service-account@yourtenant.com"
      }
    }
  }
}

Windows path example: "C:\\Users\\you\\onenote-mcp-server\\build\\index.js"

Option B: User-level configuration (applies to all your workspaces)

In VS Code, open the Command Palette (Ctrl+Shift+P) → MCP: Open User Configuration, then add:

{
  "servers": {
    "onenote": {
      "command": "node",
      "args": ["/absolute/path/to/onenote-mcp-server/build/index.js"],
      "env": {
        "ONENOTE_CLIENT_ID": "your-client-id",
        "ONENOTE_TENANT_ID": "your-tenant-id"
      }
    }
  }
}

Step 5 — Start Using the Server

The server authenticates automatically with the configured app registration and accesses OneNote for the user principal name you set in ONENOTE_USER_PRINCIPAL_NAME.


Environment Variables

Variable

Required

Default

Description

ONENOTE_CLIENT_ID

✅ Yes

Azure AD Application (client) ID

ONENOTE_TENANT_ID

✅ Yes

Tenant ID for the Entra app registration

ONENOTE_CLIENT_SECRET

✅ Yes

Client secret value for the app registration

ONENOTE_USER_PRINCIPAL_NAME

✅ Yes

User principal name whose OneNote notebooks the service accesses

ONENOTE_LOG_LEVEL

No

error

Log verbosity: debug, info, warn, error


Usage Examples

Once configured, you can ask Copilot things like:

  • "List all my OneNote notebooks"

  • "Show me the sections in my Work notebook"

  • "Create a section called 'Meeting Notes' in my Project notebook"

  • "Create a OneNote page titled 'Sprint Planning' with a bullet list of our team goals"

  • "Get the content of page [ID] so I can update it"

  • "Add a new paragraph to the end of page [ID]"


Token Cache Location

After the service first authenticates, the token cache is stored here (never committed to git):

Platform

Location

Windows

%APPDATA%\onenote-mcp-server\token-cache.json

macOS

~/Library/Application Support/onenote-mcp-server/token-cache.json

Linux

~/.local/share/onenote-mcp-server/token-cache.json

The cache file is restricted to owner-only permissions (chmod 600 on Unix).
To force re-authentication, delete this file.


Security

  • Confidential client app — client secrets are required and kept in environment variables

  • Application permissionsNotes.ReadWrite.All via the Graph .default scope

  • Client credentials flow — the server authenticates headlessly in the background

  • Tokens never logged — the Authorization header and token values are never written to logs

  • Input validation — all resource IDs are validated against a safe-ID pattern before URL interpolation

  • HTML sanitisation — script tags, event handlers, and dangerous URI schemes are stripped from page content

  • Atomic cache writes — token cache is written via temp file + rename to prevent corruption


Scopes and Permissions

The server requests Notes.ReadWrite.All as an application permission, which covers:

  • Reading notebooks, sections, and pages for the configured user principal name

  • Creating notebooks, sections, and pages

  • Updating pages

Admin consent is required for the app permission.


Troubleshooting

"ONENOTE_CLIENT_ID environment variable is not set"
→ Make sure ONENOTE_CLIENT_ID is set in your mcp.json env block.

"ONENOTE_CLIENT_SECRET environment variable is not set"
→ Make sure the client secret value is set in your mcp.json env block.

"ONENOTE_USER_PRINCIPAL_NAME environment variable is not set"
→ Make sure the service account UPN is set in your mcp.json env block.

"Graph API error: 403"
→ The app registration is missing Notes.ReadWrite.All, admin consent was not granted, or the configured user principal name cannot access the requested notebook.

"Graph API error: 401"
→ Delete the token cache file (listed above under "Token Cache Location") and re-authenticate.

"Request timed out"
→ Network issue connecting to graph.microsoft.com. Check your proxy/firewall settings.


Use with other MCP hosts (Claude Desktop / Cursor / others)

Any MCP host that supports stdio can use this server with the same command/env pattern:

{
  "mcpServers": {
    "onenote": {
      "command": "npx",
      "args": ["-y", "github:<YOUR_GITHUB_USERNAME>/onenote_mcp_server"],
      "env": {
        "ONENOTE_CLIENT_ID": "your-client-id",
        "ONENOTE_TENANT_ID": "your-tenant-id",
        "ONENOTE_CLIENT_SECRET": "your-client-secret",
        "ONENOTE_USER_PRINCIPAL_NAME": "service-account@yourtenant.com"
      }
    }
  }
}

If your host expects servers instead of mcpServers, keep the same inner object and rename only the top-level key.


Development

# Run without building (uses tsx)
npm run dev

# Build TypeScript
npm run build

# Start the built server
npm start

API Reference

All operations use the Microsoft Graph API v1.0 endpoints:

Operation

Endpoint

List notebooks

GET /users/{userPrincipalName}/onenote/notebooks

List sections

GET /users/{userPrincipalName}/onenote/notebooks/{id}/sections

Create section

POST /users/{userPrincipalName}/onenote/notebooks/{id}/sections

Create page

POST /users/{userPrincipalName}/onenote/sections/{id}/pages

Update page

PATCH /users/{userPrincipalName}/onenote/pages/{id}/content

Get page

GET /users/{userPrincipalName}/onenote/pages/{id}/content

Note: The server uses application permissions to access OneNote for the configured user principal name. Admin consent is required.

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    D
    maintenance
    A Model Context Protocol server that enables AI language models like Claude to interact with Microsoft OneNote, allowing access to notebooks, creating pages, searching notes, and analyzing content directly through the AI interface.
    Last updated
    36
    105
    MIT
  • A
    license
    C
    quality
    C
    maintenance
    A Model Context Protocol server that enables AI language models like Claude to securely interact with Microsoft OneNote data, allowing for reading, writing, searching, and comprehensive editing of notebooks, sections, and pages directly through an AI interface.
    Last updated
    13
    15
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Enables AI assistants to read, write, and manage Microsoft OneNote notebooks, sections, and pages through OAuth-authenticated MCP tools, resources, and prompts.
    Last updated
    16
    26
    2
    MIT

View all related MCP servers

Related MCP Connectors

  • Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.

  • Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.

  • Official Microsoft MCP Server to query Microsoft Entra data using natural language

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ItsikBin/onenote_mcp_server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server