Skip to main content
Someone pastes you a Montra share link. This tool turns it into the payload behind it: the document, every in-scope ticket with its markdown spec, annotated screenshot URLs, recordings, extracted frames, and the agent instructions that come with the share. Always use this instead of fetching or browsing the share web page. The page is built for people; this returns the same content in a form you can act on, and it works on links the anonymous web fetch would refuse.

Input

string
required
The Montra share link exactly as it was given to you, or a bare share token.Accepted forms: a /share/<token> or /tasks-for-agents/<token> URL on any host (a trailing .json is fine), or the token on its own (16–128 characters of letters, digits, -, and _). Query parameters on the URL are honored — ?tickets=<id,id,…> narrows the payload to the tickets the person selected, and ?documentId=<id> points at one document inside a folder share. Paste the link whole rather than trimming it.
string
For folder shares: id of one document from the folder payload’s documents[] to read in full (UUID). Takes precedence over a documentId in the URL.

Output

string
required
Which resolution leg applied: public or member. See How resolution works.
string
required
Plain-language guidance for this particular response — how to treat the URLs inside it, and whether it is a folder index rather than a document.
object
required
The share payload. A document share and a folder share return different shapes; resourceType tells you which.
array
Recording narration, inlined. Present only in member mode, and only for recordings that have a transcript.

How resolution works

Resolution happens in two legs, and access tells you which one applied.
  1. public — the link is set to Anyone with the link, so it resolves through its own access. Every URL in the payload (images, media, transcript and context endpoints) is fetchable without authentication, and you can re-fetch endpoints.context later.
  2. member — the link is invite-only, so it resolves as the Montra user who authorized this connection. Your agent is you: you can read your own links and links shared with you regardless of the link’s visibility setting.
In member mode the payload’s anonymous endpoints cannot serve the link, so two things change: image and media URLs are re-minted as short-lived signed links — fetch them while you work rather than storing them — and transcripts are inlined in transcripts instead of being left behind transcriptUrl.

Notes

  • This tool works on links from any workspace. It is the one deliberate exception to the connection’s workspace binding, because a pasted link names one specific resource. Every other tool stays inside the bound workspace.
  • Folder links resolve to an index of the folder’s documents. Read one by calling again with the same url plus its documentId.
  • A ?tickets= filter means the person chose those tickets deliberately: only they are in scope for implementation, even though the rest of the document is readable for context.
  • If the link fails to resolve, it is either invalid, expired, or revoked, or it is invite-only and the connecting Montra account has no access. The fixes are on the sharing side: have the person invite that account, switch the link to Anyone with the link in Montra’s Share dialog, or send a fresh link.
  • The full story — how the same link serves people and agents, and how to fetch a public payload without the connector — is in the share links guide.