onenote-mcp-server

onenote-mcp-server

Enables natural language access to Microsoft OneNote notebooks, sections, and pages for reading and listing content.

Category
Visit Server

README

OneNote MCP Server

A complete, robust Model Context Protocol (MCP) server for Microsoft OneNote integration with Claude Desktop. Access your entire OneNote knowledge base through natural language queries.

šŸŽÆ What This Does

Transform your OneNote notebooks into an AI-accessible knowledge base:

  • List all your notebooks, sections, and pages
  • Read page content for analysis and search
  • Natural language queries like "Show me my DevOps notes" or "Find pages about project planning"
  • Secure OAuth authentication with Microsoft Graph API
  • Bulletproof error handling with detailed debugging

✨ Why This Implementation

Unlike other OneNote MCP servers, this one:

  • āœ… Actually works - tested extensively with real OneNote data
  • āœ… Complete functionality - all core OneNote operations implemented
  • āœ… Robust authentication - two-step device flow that handles edge cases
  • āœ… Production ready - proper error handling and logging
  • āœ… Easy setup - detailed instructions for non-technical users

šŸš€ Quick Start

Prerequisites

  • Python 3.10+
  • uv package manager (recommended) or pip
  • Claude Desktop
  • Microsoft Azure account (free)

1. Install uv (if you don't have it)

# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh

# or with Homebrew
brew install uv

2. Clone and Setup

git clone https://github.com/yourusername/onenote-mcp-server.git
cd onenote-mcp-server

# Create virtual environment and install dependencies
uv sync

3. Azure App Registration

You need to create an Azure app to access OneNote. Don't worry, it's free and takes 5 minutes:

  1. Go to Azure Portal (sign in with your Microsoft account)
  2. Navigate to Azure Active Directory → App registrations → New registration
  3. Fill out the form:
    • Name: "OneNote MCP Server" (or whatever you like)
    • Supported account types: "Accounts in any organizational directory and personal Microsoft accounts"
    • Redirect URI: Select "Public client/native" and enter: https://login.microsoftonline.com/common/oauth2/nativeclient
  4. Click Register
  5. Copy the Application (client) ID - you'll need this!

4. Add Permissions

Still in your Azure app:

  1. Go to API permissions → Add a permission
  2. Select Microsoft Graph → Delegated permissions
  3. Add these permissions:
    • Notes.Read - Read OneNote notebooks
    • Notes.ReadWrite - Create/modify OneNote content (optional but recommended)
    • User.Read - Read user profile
  4. Click Grant admin consent (the button at the top)

5. Configure Claude Desktop

Edit your Claude Desktop config file:

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

Add this configuration (replace /ABSOLUTE/PATH/TO/PARENT/FOLDER/weather with your actual path):

Basic configuration:

{
  "mcpServers": {
    "onenote": {
      "command": "uv",
      "args": [
        "--directory", "/FULL/PATH/TO/onenote-mcp-server",
        "run", "python", "onenote_mcp_server.py"
      ],
      "env": {
        "AZURE_CLIENT_ID": "your-azure-client-id-here"
      }
    }
  }
}

With explicit token caching control:

{
  "mcpServers": {
    "onenote": {
      "command": "uv",
      "args": [
        "--directory", "/FULL/PATH/TO/onenote-mcp-server",
        "run", "python", "onenote_mcp_server.py"
      ],
      "env": {
        "AZURE_CLIENT_ID": "your-azure-client-id-here",
        "ONENOTE_CACHE_TOKENS": "true"
      }
    }
  }
}

Replace /FULL/PATH/TO/onenote-mcp-server with the actual path to this project.

6. Restart Claude Desktop

Completely quit and restart Claude Desktop. You should see OneNote tools in the šŸ”Ø menu.

šŸ” First Time Authentication

  1. In Claude Desktop, say: "Start OneNote authentication"
  2. Claude will give you a URL and code
  3. Visit the URL in your browser, enter the code, and sign in
  4. Browser compatibility:
    • āœ… Firefox (tested with 139.0.4) - works perfectly
    • āŒ Safari - may have issues with Microsoft OAuth redirect
    • āœ… Chrome/Edge - should work (Microsoft's browsers)
  5. Come back to Claude and say: "Complete OneNote authentication"
  6. You're ready to go!

Token Persistence

By default, authentication tokens are cached securely on your local machine so you only need to authenticate once every few weeks/months.

To disable token caching (for security-sensitive environments):

{
  "mcpServers": {
    "onenote": {
      "command": "uv",
      "args": [
        "--directory", "/FULL/PATH/TO/onenote-mcp-server",
        "run", "python", "onenote_mcp_server.py"
      ],
      "env": {
        "AZURE_CLIENT_ID": "YOUR_CLIENT_ID_HERE",
        "ONENOTE_CACHE_TOKENS": "false"
      }
    }
  }
}

Token caching options:

  • ONENOTE_CACHE_TOKENS=true (default) - Tokens persist across sessions
  • ONENOTE_CACHE_TOKENS=false - Authenticate every session (more secure)

šŸ“– Usage Examples

Once authenticated, try these commands in Claude Desktop:

List my OneNote notebooks
Show me sections in my Work notebook  
What pages are in my Ideas section?
Read the content of my "Project Plan" page

šŸ›  Troubleshooting

"No tools available" in Claude Desktop

  • Make sure you restarted Claude Desktop after config changes
  • Check that the path in your config is correct (use full absolute path)
  • Verify uv is installed: uv --version

Authentication issues

  • Safari OAuth problems: Safari may not handle Microsoft's OAuth redirect properly - use Firefox or Chrome instead
  • "nativeclient" prompts: Normal Microsoft OAuth behavior, but if it blocks authentication, try a different browser
  • Authentication expired: Use "Check OneNote authentication status" to see token expiry
  • Clear cached tokens: Use "Clear OneNote token cache" if you need to reset authentication
  • Recommended browsers: Firefox (confirmed working), Chrome, or Edge for best compatibility

"Command not found" errors

  • Make sure uv is in your PATH
  • Alternative: replace "uv" with "python" in the config and use the full path to your Python interpreter

Permission denied errors

  • Check the file permissions in your project directory
  • Make sure Claude Desktop can read the files

šŸ— Development

Project Structure

onenote-mcp-server/
ā”œā”€ā”€ onenote_mcp_server.py      # Main server implementation
ā”œā”€ā”€ pyproject.toml             # Dependencies and metadata  
ā”œā”€ā”€ README.md                  # This file
ā”œā”€ā”€ LICENSE                    # MIT License
└── .gitignore                 # Git ignore rules

Key Features

  • Two-step authentication: Handles device code flow properly
  • Complete Graph API integration: All OneNote operations supported
  • Robust error handling: Detailed logging and graceful failures
  • FastMCP framework: Clean, maintainable code structure
  • Environment variable configuration: Secure credential handling

Adding New Features

The server is built with FastMCP, making it easy to add new tools:

@mcp.tool()
async def your_new_tool(param: str) -> str:
    """Description of what your tool does."""
    # Your implementation here
    return result

šŸ¤ Contributing

Contributions welcome! Please:

  1. Fork the repo
  2. Create a feature branch
  3. Add tests for new functionality
  4. Submit a pull request

šŸ“„ License

MIT License - see LICENSE file for details.

šŸ™ Acknowledgments

  • Built with FastMCP framework
  • Uses Microsoft Graph API for OneNote access
  • Inspired by the amazing potential of AI + personal knowledge bases

āš ļø Important Notes

  • This server only reads/writes data you already have access to
  • Your Azure app credentials stay on your machine
  • All authentication happens directly between you and Microsoft
  • No data is sent to third parties

Built with ā¤ļø for the Claude + OneNote community

Turn your OneNote into an AI-accessible knowledge base!

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured