list_pages
Pack: microsoft-onenote · Endpoint: https://gateway.pipeworx.io/microsoft-onenote/mcp
List OneNote pages (Microsoft 365 notes). Pass a section_id to list pages in that section, or omit it to list recent pages across all notebooks (newest first). Optionally filter with a free-text search query. Returns each page’s id, title, and created/last-modified times. Use to find a user’s OneNote notes/pages before reading their content.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
section_id | string | no | Optional OneNote section ID (from list_sections). If omitted, returns recent pages across all notebooks. |
top | number | no | Maximum number of pages to return (default 50, max 100). |
search | string | no | Optional free-text search query across OneNote pages (matches title and content). |
Example call
curl -X POST https://gateway.pipeworx.io/microsoft-onenote/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_pages","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"microsoft-onenote": {
"url": "https://gateway.pipeworx.io/microsoft-onenote/mcp"
}
}
}
See Getting Started for client-specific install steps.