onenote-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@onenote-mcplist my notebooks"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
OneNote MCP Server
A stdio Model Context Protocol server for Microsoft OneNote. It uses Microsoft Graph delegated permissions and Microsoft device-code authentication.
Requirements
Node.js 20 or newer
A Microsoft account with OneNote access
An MCP client such as Codex
Related MCP server: OneNoteMCP
Install
Option 1: Add from the desktop GUI
Open the Codex desktop app, select Plugins, open Create, and select Add marketplace.

Select Add plugin marketplace and enter:
Source:
https://github.com/seanGSISG/onenote-mcp.gitGit ref:
mainSparse paths: leave blank

Select Add marketplace, return to Plugins, and select the Personal tab. If the new marketplace does not appear, completely restart the desktop app and return to Plugins.
Select Sean's OneNote Plugin and choose Install beside Microsoft OneNote.

Restart the desktop app again, open a new task, and ask:
Authenticate with OneNote.
Option 2: Let Codex configure it
Paste this into a Codex desktop task—no clone is required:
Read https://raw.githubusercontent.com/seanGSISG/onenote-mcp/main/AGENTS.md and follow it to install the complete OneNote plugin in the Codex desktop app.
Codex will add this repository as a plugin marketplace, install the complete OneNote plugin, verify its MCP server, and explain when a desktop-app restart or new task is required. Users do not need to clone the repository or edit MCP JSON or TOML files.
Option 3: Install for development
git clone https://github.com/seanGSISG/onenote-mcp.git
cd onenote-mcp
npm install
npm testThe MCP SDK is installed from npm. A separate SDK checkout and build are no longer required.
Advanced: MCP-only configuration
Add this to ~/.codex/config.toml, replacing the path with the absolute path to onenote-mcp.mjs:
[mcp_servers.onenote]
type = "stdio"
command = "node"
args = ["C:/absolute/path/to/onenote-mcp.mjs"]
enabled = true
startup_timeout_sec = 30Restart Codex after changing MCP configuration.
Authentication
Call
authenticationStatus.If unauthenticated, call
authenticate.Open the returned Microsoft device-login URL and enter the returned code. Use
force: trueto replace a stale or unwanted login.Call
authenticationStatusagain to confirm completion.
Authentication starts in the background, so the authenticate tool returns the device code immediately. The delegated access token is stored at ~/.onenote-mcp/access-token.json. Set ONENOTE_TOKEN_PATH to override that location, or supply GRAPH_ACCESS_TOKEN in the server environment. ONENOTE_CLIENT_ID and ONENOTE_TENANT_ID override the default public client and common tenant.
The server requests the delegated Notes.ReadWrite and User.Read scopes.
Tools
Tool | Purpose |
| Check authentication state and expiration |
| Start device-code authentication |
| List up to |
| Get one notebook by exact ID |
| List up to |
| List up to |
| Get page metadata and optionally its HTML |
| Create a titled XHTML page in an exact section |
| Search page titles |
All resource-specific operations use explicit IDs. The server never silently chooses the first notebook, section, or page.
Development
npm run check
npm test
npm auditThe test suite covers token migration and expiration, asynchronous device-code flow, Graph request construction and errors, XHTML title escaping, and a real MCP stdio handshake.
Available Tools
9 toolsauthenticateARead-only
Start Microsoft device-code authentication. Immediately returns the login URL and user code; authentication completes in the background.
| Name | Required | Description | Default |
|---|---|---|---|
| force | No | Start a new sign-in even if a stored token appears valid |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description indicates a stateful process (authentication), conflicting with the readOnlyHint annotation marking it as read-only. This contradiction undermines transparency, and no additional behavioral details are provided.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, front-loaded with the action, each word carries meaning. No superfluous content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Adequately covers the tool's role in the authentication flow, but lacks guidance on how to handle the returned URL/code or integrate with authenticationStatus. Minor gap given tool simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the description adds no value beyond the schema's parameter description for 'force'. Baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool starts Microsoft device-code authentication and returns login URL and user code immediately, distinguishing it from sibling tools like authenticationStatus which checks status.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies use when authentication is needed, but lacks explicit guidance on when not to use or alternatives beyond the sibling list. However, the context is clear enough for an AI agent to infer appropriate usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
authenticationStatusARead-onlyIdempotent
Check whether OneNote is authenticated and whether device-code authentication is pending.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint. The description adds value by specifying exactly what status information is reported (authentication and pending device-code). No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence clearly stating purpose. No wasted words. Front-loaded with key information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given zero parameters, rich annotations, and a clear description, the tool is fully specified. The description covers what the tool does and what it checks, making it complete for an AI agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters. Schema coverage is 100%. The description adds meaning by clarifying the return information, which is above the baseline for zero-param tools.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses specific verb 'Check' and explicitly names the two items it checks: 'authenticated' and 'device-code authentication pending'. This clearly distinguishes it from sibling tools like 'authenticate' which perform authentication actions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context (checking status before operations) and distinguishes from siblings by being a status-only tool. However, it does not explicitly state when not to use it or provide alternatives beyond the sibling list.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
createPageC
Create a OneNote page in an exact section using XHTML content.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| sectionId | Yes | ||
| contentHtml | Yes | HTML fragment for the page body |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate non-idempotent and non-destructive. Description adds only the XHTML content requirement, lacking details about side effects, authentication needs, or failure modes (e.g., what happens if sectionId is invalid).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence with minimal words, no redundancy. However, it is slightly underspecified for the parameter context; could be improved with a brief usage note but remains efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 3 required params, no output schema, and minimal annotation detail, the description lacks important context such as return value behavior, duplicate handling, or size limits. Incomplete for effective agentic use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has 3 required params with 33% description coverage (only contentHtml described). The description adds no extra meaning for title or sectionId beyond their names and types, failing to compensate for low schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (create), the resource (OneNote page), and the specific context (exact section, using XHTML content). It distinguishes from siblings like listPages (read-only) and searchPages (search).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool vs alternatives like listSections or getPage. No prerequisites or exclusions mentioned, leaving the agent to infer usage without explicit context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getNotebookARead-onlyIdempotent
Get a OneNote notebook by its exact resource ID.
| Name | Required | Description | Default |
|---|---|---|---|
| notebookId | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, so the description's 'Get' is consistent. However, the description adds no additional behavioral context (e.g., error handling, auth needs). It does not contradict annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence with no unnecessary words. It is front-loaded and efficiently conveys the core purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple get-by-ID tool with one parameter, the description is adequate but could mention what the tool returns or behavior when the notebook is not found. It does not explain the response, which may be important for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description should compensate for parameter meaning. It only says 'by its exact resource ID' but does not describe the notebookId parameter itself (e.g., format, source). This provides minimal added value beyond the parameter name.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and specifies the resource as 'OneNote notebook by its exact resource ID'. This distinguishes it from sibling tools like listNotebooks, which list notebooks rather than retrieve a specific one.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when you have the exact resource ID, but does not explicitly state when not to use it or mention alternatives. The context is clear, but lacks exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getPageARead-onlyIdempotent
Get a OneNote page by its exact resource ID, including HTML content by default.
| Name | Required | Description | Default |
|---|---|---|---|
| pageId | Yes | ||
| includeContent | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, covering core behavioral traits. The description adds that HTML content is returned by default, but does not disclose additional context such as error handling, pagination, or rate limits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, dense sentence that efficiently conveys the core purpose and key behavior. No wasted words, and the most critical information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 2 parameters, no output schema, and basic annotations, the description covers the purpose and default content behavior. However, it lacks parameter details and usage guidance, making it moderately complete but not fully self-sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description should compensate but only vaguely references 'exact resource ID' and 'HTML content by default'. It does not explain the format of pageId or the effect of includeContent=false, relying on parameter names which may be insufficient.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get'), the resource ('OneNote page'), and the key behavior ('by its exact resource ID, including HTML content by default'). It effectively distinguishes from sibling tools like listPages and searchPages.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when you have a specific page ID but does not explicitly state when to use this tool over alternatives like listPages or searchPages. No exclusions or 'when not to use' guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
listNotebooksBRead-onlyIdempotent
List OneNote notebooks available to the signed-in user.
| Name | Required | Description | Default |
|---|---|---|---|
| maxResults | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, so the description is not required to repeat safety traits. The description adds no further behavioral context (e.g., whether it supports pagination or the format of results), which is acceptable given the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no filler, effectively front-loading the purpose. It is concise but lacks detail that could improve utility without harming conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has one optional parameter and no output schema, the description is incomplete: it does not explain the maxResults parameter or what the output contains (e.g., notebook IDs, names). More context is needed for an agent to use this tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0% with one parameter maxResults. The description does not explain what maxResults does (e.g., limits the number of notebooks returned). Since the description fails to compensate for the lack of schema descriptions, it adds no value for parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action 'List' and the resource 'OneNote notebooks available to the signed-in user', differentiating it from siblings like getNotebook (single) and listSections/listPages (sub-resources).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides context that it lists notebooks for the signed-in user, implying it should be used to get a user's notebooks. However, it does not explicitly mention when not to use this tool or alternatives like getNotebook for a specific notebook.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
listPagesCRead-onlyIdempotent
List OneNote page metadata, optionally limited to one section.
| Name | Required | Description | Default |
|---|---|---|---|
| sectionId | No | ||
| maxResults | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint and idempotentHint, so safety is clear. Description adds no extra behavioral context (e.g., pagination, ordering, or response details).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence is concise but under-specified. It omits key details like pagination or what 'metadata' includes, making it minimally adequate.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 2 parameters, no output schema, and no parameter descriptions, the tool is incomplete. Agents lack guidance on return format, pagination, and cross-section behavior.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the tool description does not explain the parameters sectionId or maxResults. Agents must infer from names and constraints, which is insufficient.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the action (list), resource (OneNote page metadata), and optional filter (limited to one section). It distinguishes from siblings like searchPages and getPage by focusing on listing metadata.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus siblings. The description only hints at optional section filtering but does not discuss use cases or exclude alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
listSectionsARead-onlyIdempotent
List OneNote sections, optionally limited to one notebook.
| Name | Required | Description | Default |
|---|---|---|---|
| maxResults | No | ||
| notebookId | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, so the description does not need to reiterate safety. It adds value by mentioning the optional filtering by notebook, which goes beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence with no wasted words. Every part contributes meaning.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema exists, but the description does not mention what is returned (e.g., section objects, their properties). It also omits details on ordering or pagination, making it somewhat incomplete for a list tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description must compensate. It explains notebookId via 'optionally limited to one notebook', but provides no explanation for maxResults, which controls pagination.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'List' and resource 'OneNote sections', and includes the optional filtering by notebook, which distinguishes it from sibling tools like listNotebooks and listPages.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use (list sections), but lacks explicit guidance on when to prefer alternatives or any prerequisites, such as using listNotebooks first to obtain notebookId.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
searchPagesARead-onlyIdempotent
Search page titles across OneNote. Returns page metadata; use getPage to read a result.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | ||
| maxResults | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint as true. The description adds that it returns metadata and does not request destructive behavior, which is consistent. It adds minor value beyond annotations by specifying the return type.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with zero waste. The main action is front-loaded, and the follow-up guidance is concise. Perfect length for the tool's simplicity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (two parameters, no output schema, clear annotations), the description adequately covers purpose, output, and next steps. It could mention that search is limited to titles, but overall sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description does not explain parameters beyond implying the query. The maxResults parameter and its constraints are left unaddressed, failing to add meaning beyond the schema's types and default.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Search') and resource ('page titles across OneNote'), clearly distinguishing from sibling tools like listPages and getPage. It also mentions the output is metadata and directs to getPage for full content, avoiding confusion.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly states the tool's purpose and advises using getPage for reading a result. However, it does not explicitly exclude alternatives like listPages or mention when not to use it, though the context with sibling tools implies the distinction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
9 tool updates
v1.0.2- First observed
authenticate - First observed
authenticationStatus - First observed
createPage - First observed
getNotebook - First observed
getPage - First observed
listNotebooks - First observed
listPages - First observed
listSections - First observed
searchPages
TDQS
Each tool has a clear, distinct purpose: authentication, listing/getting notebooks/sections/pages, creating pages, and searching. No overlap or ambiguity.
Most tools follow a verb_noun pattern (e.g., listNotebooks, createPage). 'authenticationStatus' is a noun phrase but fits the context. Minor deviation is acceptable.
9 tools cover the core OneNote operations (auth, notebooks, sections, pages) without being excessive. Perfectly scoped for the domain.
Covers read and create operations for pages and notebooks, but lacks update and delete for pages and notebooks. Search is present. Notable gaps exist for full CRUD.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Create, search, and update notes in an xNotepad AI notebook, with semantic search and AI Q&A.
- KnowtisOAuthapp.knowtis
Create, search and manage Knowtis collaborative notes from AI assistants.
Create, read, search, and organize your Drafto notes and notebooks.
Cross-session, cross-device memory for your agent: remember and recall notes. No key to start.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI language models to interact with Microsoft OneNote via a standardized interface, supporting notebook and page management through natural language.4326MIT
- AlicenseNot gradedqualityDmaintenanceEnables interaction with Microsoft OneNote via the Microsoft Graph API, allowing users to list notebooks and retrieve page content. It supports both personal and organization notebooks with credential caching for efficient authentication.433MIT
- AlicenseDqualityCmaintenanceEnables AI assistants to securely interact with Microsoft OneNote data through the Microsoft Graph API. It supports comprehensive management tasks including searching page content, creating and editing notes, and automating productivity workflows like daily note creation.203MIT
- AlicenseNot gradedqualityFmaintenanceEnables natural language access to Microsoft OneNote notebooks, sections, and pages for reading and listing content.47MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/seanGSISG/onenote-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server