โ† Help & Docs

Meeting Records, Transcripts & Business Documentation

MCP-first meeting capture and operational documentation in TATER Ops. Last updated 2026-07-30

The model

TATER Ops adds two coupled features for capturing operational knowledge:

  1. Meeting Records - a first-class entity for any conversation worth documenting. Captures attendees, agenda, raw transcript, decisions, and every artifact that came out of the meeting.
  2. Business Documentation - a new home for non-security operational docs: SOPs, process maps, role descriptions, vendor briefs, client procedures, onboarding/offboarding workflows.

MCP-first by design - no internal LLM

TATER is the durable data substrate. Extraction (action items, decisions, summaries, drafted SOPs) happens in your own LLM session via the TATER MCP server. Claude / ChatGPT / Copilot pulls the raw transcript via get_meeting_transcript, your subscription pays for the tokens, and the AI writes structured artifacts back to TATER via the standard MCP tools.

Why this matters: TATER never runs server-side LLM calls. There is no token billing inside TATER. Your existing AI subscription does the compute. The only cost in TATER is data storage and MCP tool-call routing - both negligible.

Capturing a meeting

Manual capture (today)

  1. Open TATER Ops โ†’ Workspace โ†’ Meetings and click + New Meeting.
  2. Fill in title, type, scheduled start, attendees, planned agenda, and the consent attestation if appropriate.
  3. From the meeting detail page, click + Attach transcript and paste in the transcript text (VTT, SRT, plain, or pasted from Teams / Zoom / Webex).
  4. Click ๐Ÿšฉ Flag for documentation - TATER creates a Tasker task assigned to you (or whoever you specify) due in 5 days so the doc work itself is tracked.

The one-click way: Agent prompt — to-dos & docs

Open the meeting record and click ๐Ÿค– Agent prompt — to-dos & docs at the bottom of the detail panel. TATER writes a complete, ready-to-paste prompt for you: the meeting's id, title, date, and attendees are filled in, followed by the exact tool sequence to read the meeting safely and file the results back — action items as Tasker tasks or My To-Dos, decisions into the decision log, a summary onto the record, and documentation as a draft Business Doc. Everything it creates is linked back to the meeting, so the record shows the closed loop.

Click Copy, paste it into any session connected to the TATER MCP server, and let it run. The prompt tells the agent to read get_workflow_guide({topic:"meetings"}) first, so it always follows the current TATER playbook rather than a snapshot of it, and it folds in the extraction hints from a matching Meeting Template when your org has one. Writing back needs Auditor or higher.

Meetings classified sensitive do not get a prompt — transcript reads are blocked for MCP sessions too, so TATER explains that instead of handing you something that would fail.

External LLM capture (the power-user flow)

Prefer to drive it yourself? Open your MCP-capable LLM session (Claude Desktop, Claude API, ChatGPT with the TATER MCP server connector, Copilot) and prompt:

"Pull yesterday's architecture-review meeting from TATER, extract the action items into Tasker tasks, draft a Business Doc for the firewall-change decision, and post the access-review decision to the related control thread."

Your LLM uses the MCP tools (list_meetings, get_meeting_transcript, get_meeting_context, create_business_doc, create_tasker_task, append_meeting_decision, append_meeting_link) to read the meeting and write the artifacts. TATER pays nothing for the LLM compute.

Privacy gates

SensitivityEffect
normal (default)Full read/write access. MCP can pull transcript. Standard audit trail.
confidentialTranscripts accessible but flagged. Recommended for client engagements, vendor calls.
sensitiveHard lock. Transcript attach blocked; transcript reads (including MCP) refused. Use for HR / legal / attorney-client / IR-classified meetings.

Consent attestation (consentAttested) confirms the organizer informed attendees about recording / processing. Every transcript read is audit-logged. Sensitive meetings show as ๐Ÿ”’ in lists and reject transcript-read attempts even from MCP.

Closed-loop view

The meeting detail page shows everything that came out of the meeting:

Business Docs drafted from a meeting via create_business_doc(source_meeting_id=...) auto-link both ways - the doc records its provenance, and the meeting links back to the doc.

Business Documentation - types

TypeUse for
SOPStandard operating procedures, step-by-step "how do we do X"
process-mapEnd-to-end process flow descriptions
role-descriptionRole definitions, responsibilities, RACI matrices
vendor-briefNon-TPRM operational details about a vendor
client-procedurePer-client engagement playbooks
workflowGeneral internal workflows
onboardingEmployee onboarding / offboarding checklists
generalAnything else operational that doesn't fit a security policy / config doc / playbook

Distinct from: Policies (security policies with approval workflow), ConfigDocs (technical configuration of specific systems), Implementation Guides (compliance-control rollouts), Playbooks (incident response), and TATERpedia (cross-org public wiki).

MCP tool reference

ToolPurpose
list_meetingsFind meetings by status / since / recurring series
get_meeting_recordFull meeting record incl. attendees, agenda, links, decisions
get_meeting_transcriptRaw transcript text (subject to sensitivity gate, audited)
get_meeting_contextPre-meeting brief context: prior meetings in series, attendee tasks, related docs
create_meeting_recordCreate a new Meeting (e.g. ingesting from Zoom / Webex / external source)
update_meeting_recordUpdate extracted fields: discussed-agenda, summary, topic-tags, actual-attendees
attach_meeting_transcriptAttach raw transcript content to a Meeting
flag_meeting_for_documentationMark for documentation, auto-create Tasker tracking task
append_meeting_decisionAdd a decision to the meeting's decision log
append_meeting_linkLink an artifact (task / business doc / risk / change / control / wiki) to the meeting
list_business_docsBrowse Business Documentation, filter by docType / status / owner
get_business_docRead full body + metadata of a business doc
create_business_docDraft a new business doc (provenance fields preserve source meeting + model)
update_business_docEdit body / status / owner / links; version increments on body change

Phased delivery

Related