20+ note-taking agents
Choose from more than 20 ready-to-use agents built for meetings, research, study, sales, support, and more.
Turn a meeting recording, lecture, call, interview, or document into clear notes you can review, refine, save, and share.
Note Maker
Attach meeting recording file
MP3, MP4, PDF, WEBM, M4A, TXT · up to 300MB each
Note Gen Prompt
−Create concise, accurate, action-oriented notes with decisions, owners, due dates, risks, and open questions.
Start with a proven workflow, then shape Note Maker around the way your team actually works.
Choose from more than 20 ready-to-use agents built for meetings, research, study, sales, support, and more.
Customize your agent prompts so every note reflects your preferred format, level of detail, and next-step logic.
Keep source files, transcripts, and generated notes saved securely in your account, ready whenever you need them.
Send polished notes to your team in a single click so everyone can move from conversation to action faster.
Decisions, owners, and action items
Meeting recordings
Create a concise executive summary, discussion points, decisions, action items, risks, and open questions.
Study notes that preserve the big ideas
Lectures and research
Turn a lecture, book, article, podcast, or discussion into key concepts, relationships, examples, and a study checklist.
CRM-ready calls and handoffs
Sales and support calls
Capture customer context, pain points, buying signals, objections, stakeholders, commitments, and next steps.
Private reflections and source documents
Voice notes and documents
Organize personal reflections, project updates, interviews, strategy reviews, and other unstructured material.
Add agent-driven note creation to your AI product without building the transcription, note-type selection, private artifact handling, or widget workflow yourself.
run_agentAgent request
Prompt
Turn this meeting recording into decisions, owners, risks, and next steps.
Status
completed
Output
Markdown
Structured result
response_text, tool_result, agent_runtime, and widget_bridge.
What developers need to know before connecting Note Maker.
One: run_agent. Note-type selection, transcription, generation, and sharing stay behind the agent wrapper.
It can turn meetings, lectures, sales calls, interviews, research, project updates, support cases, strategy reviews, and similar source material into structured notes.
Yes. Use file_urls for public file URLs or reference_files for app file references with download URL and file ID.
Yes. The wrapper can return widget-bridge and component metadata when the downstream note experience has a renderable result.
The required prompt carries the user’s request, constraints, desired output, and any explicit file handles relevant to the task.
Yes. Any client that supports tools/list and tools/call can discover and invoke run_agent.
Note Maker intentionally keeps its public contract small: call the agent, provide the user’s request, and optionally provide source files.
Single public tool
Runs the Note Maker agent for the user’s request. The agent interprets intent, coordinates the note workflow, and preserves structured downstream results for your app.
Required input
promptOptional inputs
file_urls[]reference_files[]Useful output
response_texttool_resultwidget_bridgeThe wrapper promotes the agent’s useful response into a stable structured payload while keeping the standard MCP content envelope available to the client.
response_text
The user-facing answer your product can render immediately.
tool_result
Structured downstream note output for persistence, reasoning, or follow-up turns.
widget_bridge
Bridge state and display metadata for the interactive note experience.
agent_runtime
Runtime details that help trace an agent-backed request.
{ "response_text": "I created structured meeting notes with decisions and next steps.", "agent_runtime": { "conversation_id": "session-...", "response_id": "resp-...", "app_mode": "skills_based_agent" }, "tool_result": { "status": "generation_succeeded", "note_type": "meeting_notes", "markdown": "# Meeting Notes\n\n## Executive Summary\n...", "note_file_id": "Tm90ZSBNYWtlci9..." }, "widget_bridge": { "bridge_state_id": "note-bridge-...", "output_template_uri": "ui://widgets/note-maker" } }
One call is enough to start. Put the user’s intent in the prompt and attach source files only when the workflow needs them.
run_agent with tools/list.response_text and preserve tool_result for the next turn.const result = await mcp.callTool("run_agent", {
prompt: "Turn this meeting recording into concise notes with decisions, owners, risks, and next steps.",
file_urls: ["https://files.example.com/meeting.mp3"]
});
const notes = result.structuredContent?.tool_result;
return result.structuredContent?.response_text || notes?.markdown || "";The agent wrapper is designed for account-scoped use so source files, generated notes, and widget state stay associated with the authenticated user.
Use Infoseek auth when your AI app needs user-owned source files, private notes, and continuity across follow-up turns.
The supported Infoseek route keeps the downstream note-generation workflow behind the agent boundary and preserves account-scoped artifacts.
Stable runtime and downstream result fields let agents continue from the last real note state instead of guessing from prose.
Natural-language requests preserve the user’s desired format, constraints, and source context across the note workflow.
Response text, structured note output, and widget bridge metadata give your product a direct path from agent request to reviewable notes.
Turn calls into decisions, owners, risks, and next steps.
Convert lectures and discussions into reviewable study notes.
Structure support, incident, project, and finance conversations.
Create evidence-focused notes from interviews, studies, and source documents.