Get Notetaker Meetings (Platform MCP)

Retrieves notetaker meetings from the monday.com AI Notetaker, with optional filters for access level, summaries, topics, action items, and transcripts using the Platform MCP.

Use this tool to retrieve meetings recorded by the monday.com AI Notetaker. You can filter by access level, specific meeting IDs, or a search term, and control which details are returned using the include_* flags. By default, only basic meeting metadata is returned (title, participants, start/end time, meeting link) — set the appropriate flags to include summaries, topics, action items, or full transcripts.

The default access filter is OWN, which returns meetings the authenticated user participated in or invited the notetaker bot to. Use ALL to retrieve every meeting the user has access to. Results support cursor-based pagination.

Parameters

ParameterTypeRequiredDescription
idsarrayNoFilter by specific meeting IDs. Use to fetch one or more specific meetings in a single call.
accessstringNoFilter meetings by access level. One of OWN (default), SHARED_WITH_ME, SHARED_WITH_ACCOUNT, or ALL.
limitnumberNoMaximum number of meetings to return per page. Between 1 and 100. Defaults to 25.
cursorstringNoPagination cursor. Pass the cursor value from a previous response's page_info to fetch the next page.
searchstringNoSearch meetings by title, participant name, or email.
include_summarybooleanNoWhether to include the AI-generated summary for each meeting. Defaults to false.
include_topicsbooleanNoWhether to include discussion topics and talking points for each meeting. Defaults to false.
include_action_itemsbooleanNoWhether to include action items for each meeting. Defaults to false.
include_transcriptbooleanNoWhether to include the full transcript for each meeting. Transcripts can be very large. Defaults to false.

Example

Retrieve your own meetings with AI-generated summaries and action items:

{
  "access": "OWN",
  "include_summary": true,
  "include_action_items": true,
  "limit": 10
}

Calling the tool with no arguments returned 25 meetings from the test account. Each meeting object includes an id (UUID), title, start_time, end_time, recording_duration (in milliseconds), access_type, meeting_link, and a participants array of email addresses. The response also includes a pagination object with has_next_page and a cursor for fetching additional pages.


Programmatic equivalent

The monday.com AI Notetaker is managed through the monday.com interface or via the MCP. There is no public GraphQL API for retrieving notetaker meetings.