onenote-mcp-server

onenote-mcp-server

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

Category
访问服务器

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 DirectoryApp registrationsNew 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 permissionsAdd a permission
  2. Select Microsoft GraphDelegated 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!

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选