Connects Claude to Microsoft OneNote through the Pipeworx gateway, letting you read and manipulate notebook data via streamable HTTP. The source doesn't detail specific tools, but OneNote integration typically means working with notebooks, sections, pages, and content blocks. You can call tools directly or use ask_pipeworx to query in plain English and let the gateway route to the right endpoint. Part of a larger Pipeworx offering that bundles 725+ data sources under one gateway URL if you need broader Microsoft 365 coverage. Useful when you're building workflows that need to pull meeting notes, documentation, or shared notebooks into your agent's context without manual export steps.
Microsoft OneNote (Microsoft 365) MCP Pack
Part of Pipeworx — an MCP gateway connecting AI agents to 725+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"microsoft-onenote": {
"url": "https://gateway.pipeworx.io/microsoft-onenote/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 725+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Microsoft Onenote data" })
The gateway picks the right tool and fills the arguments automatically.
MIT