Overview
The Share Links tools allow you to manage public share links for notes. Share links enable external access to meeting notes without requiring authentication. Available Tools:create_share_link- Create or update a share link for a noteget_share_link- Retrieve the current share link for a notedelete_share_link- Delete a share link, revoking public access
- Share meeting notes with external stakeholders
- Generate password-protected links for sensitive content
- Revoke access to previously shared notes
create_share_link
Creates a new share link for a note, or updates the existing one. Optionally protects the link with a password. Required Scope:mcp:notes:write
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
noteGuid | string | Yes | The unique GUID of the note |
usePassword | boolean | No | If true, generates a password-protected link |
Request Example
Response
| Field | Type | Description |
|---|---|---|
shareUrl | string | The public URL for accessing the shared note |
password | string | null | Password required to view the note (only present when usePassword is true) |
createdAt | string | Timestamp when the share link was created (ISO 8601) |
If a share link already exists for the note, calling
create_share_link will update the existing link rather than creating a duplicate.get_share_link
Retrieves the current share link information for a note. Required Scope:mcp:notes:read
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
noteGuid | string | Yes | The unique GUID of the note |
Request Example
Response
| Field | Type | Description |
|---|---|---|
shareUrl | string | The public URL for accessing the shared note |
hasPassword | boolean | Whether the link is password-protected |
createdAt | string | Timestamp when the share link was created (ISO 8601) |
delete_share_link
Deletes the share link for a note, immediately revoking all public access. Required Scope:mcp:notes:write
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
noteGuid | string | Yes | The unique GUID of the note |
Request Example
Response
Common Errors
Note Not Found
Solution: Verify thenoteGuid is correct. Use search_notes to find valid note identifiers.
Share Link Not Found
Solution: The note does not have a share link yet. Usecreate_share_link to create one.
Best Practices
Use Passwords for Sensitive Content
Use Passwords for Sensitive Content
Always enable
usePassword when sharing notes that contain confidential information such as financial data, HR discussions, or strategic plans.Revoke Access When No Longer Needed
Revoke Access When No Longer Needed
Periodically review active share links and delete any that are no longer needed. This reduces the risk of unintended access to meeting content.
Check Before Creating
Check Before Creating
Use
get_share_link first to check if a share link already exists before creating a new one. This avoids unintentionally resetting passwords on existing links.Next Steps
search_notes
Find notes to share
get_note_summary
Preview note content before sharing