OneNote MCP Server
About
OneNote MCP Server is a Model Context Protocol (MCP) server implementation for Microsoft OneNote. It enables AI language models to interact with OneNote through a standardized interface, providing notebook, section, and page management capabilities.
Details
- Author
- MCP-Mirror
- Downloads
- 397
- Categories
- Cloud Service
Jump to
- List all notebooks, sections, and pages
- Create new notebooks, sections, and pages with HTML content
- Read and update page content
- Delete notebooks, sections, and pages
- Search pages across notebooks
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
OneNote MCP ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install the package globally with npm install -g mcp-server-onenote. Configure the required environment variables (AZURE_TENANT_ID, AZURE_CLIENT_ID, AZURE_CLIENT_SECRET) from an Azure App Registration. Then add the server configuration to your MCP client (e.g., Claude Desktop) as shown in the README.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"onenote mcp server": {
"onenote": {
"command": "npx",
"args": [
"-y",
"mcp-server-onenote"
],
"env": {
"AZURE_TENANT_ID": "",
"AZURE_CLIENT_ID": "",
"AZURE_CLIENT_SECRET": ""
}
}
}
}
}
McpServers
{
"onenote": {
"command": "npx",
"args": [
"-y",
"mcp-server-onenote"
],
"env": {
"AZURE_TENANT_ID": "",
"AZURE_CLIENT_ID": "",
"AZURE_CLIENT_SECRET": ""
}
}
}
OneNote MCP Server
A Model Context Protocol (MCP) server implementation for Microsoft OneNote, enabling AI language models to interact with OneNote through a standardized interface.
Features
Notebook Management
- List all notebooks - Create new notebooks - Get notebook details - Delete notebooksSection Management
- List sections in a notebook - Create new sections - Get section details - Delete sectionsPage Management
- List pages in a section - Create new pages with HTML content - Read page content - Update page content - Delete pages - Search pages across notebooksInstallation
npm install -g mcp-server-onenote
Configuration
Set the following environment variables:
- AZURE_TENANT_ID: Your Azure tenant ID
- AZURE_CLIENT_ID: Your Azure application (client) ID
- AZURE_CLIENT_SECRET: Your Azure client secret
Using with MCP Client
Add this to your MCP client configuration (e.g. Claude Desktop):
{
"mcpServers": {
"onenote": {
"command": "npx",
"args": ["-y", "mcp-server-onenote"],
"env": {
"AZURE_TENANT_ID": "<YOUR_TENANT_ID>",
"AZURE_CLIENT_ID": "<YOUR_CLIENT_ID>",
"AZURE_CLIENT_SECRET": "<YOUR_CLIENT_SECRET>"
}
}
}
}
Azure App Registration
1. Go to Azure Portal and navigate to App registrations
2. Create a new registration
3. Add Microsoft Graph API permissions:
- Notes.ReadWrite.All
- Notes.Read.All
4. Create a client secret
5. Copy the tenant ID, client ID, and client secret for configuration
Development
```bash
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.

