Overview
Theget_share_link tool retrieves the public share link for a note. A share link lets someone open a meeting note without signing in.
Available Tool:
get_share_link- Retrieve the current share link for a note (read-only)
Creating and deleting share links is not available over MCP. Those write actions need the
mcp:notes:write scope, which the MCP server does not expose yet. Create or delete share links with the REST API instead — PUT / DELETE /v1/external/notes/{noteGuid}/share-link.- Check whether a note already has a public share link
- Retrieve the share URL for a note to pass it along
- Unlock a password-protected link’s details by supplying the password
get_share_link
Retrieves the current share link information for a note. Accepts either the share UUID (new format) or the note GUID (legacy). When the link is password-protected, passpassword to verify access and unlock the full response.
Required Scope: mcp:notes:read
Parameters
Request Example
Response
If the link is password-protected and you call
get_share_link without a password, the response includes requiresPasswordVerification: true and omits the verification flag. Supplying the wrong password returns 401 Unauthorized.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. Create one in the Tiro app or with the REST API (PUT /v1/external/notes/{noteGuid}/share-link).
Best Practices
Unlock password-protected links
Unlock password-protected links
When a link is password-protected, pass
password to get_share_link to unlock the full response. Without it, the response sets requiresPasswordVerification: true.Confirm a link exists before sharing
Confirm a link exists before sharing
Call
get_share_link to confirm a note has an active public link before you send the URL to someone.