Overview
get_note_transcript returns the full conversation transcript (speaker-by-speaker) of a meeting.
Primary Use Cases:
- Understanding complete meeting content
- Finding specific quotes or statements
- Analyzing conversation context
- When exact wording is important
- Returns complete transcript text
- Large data size (~3,000-5,000 tokens per hour of meeting)
- Detailed information (speakers, timestamps)
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
noteId | number | Yes | Note ID (positive integer) |
noteId (required)
The unique ID of the note to retrieve. Example:- Use
search_notesto find meetings - Use the
noteIdfrom search results
Response Format
Success Response
| Field | Type | Description |
|---|---|---|
transcript | string | Complete conversation transcript (separated by speaker) |
Usage Examples
Example 1: Basic Usage
AI Request:Example 2: Progressive Disclosure Pattern
Step 1: Searchsearch_notes - Fast (~1 second, ~100 tokens)
Step 2: Summary
get_note_summary - Medium (~2 seconds, ~500 tokens)
Step 3: Full Transcript (Only if Needed)
get_note_transcript - Slow (~5 seconds, ~4,000 tokens)
Token Usage
Typical Meeting (1 hour): ~3,000-5,000 tokens Comparison:| Tool | Token Usage | When to Use |
|---|---|---|
search_notes | ~50 tokens | Finding meetings |
get_note_summary | ~200-800 tokens | Quick overview |
get_note_transcript | ~3,000-5,000 tokens | Need exact quotes |
get_note_documents | ~300-2,000 tokens | Action items |
Best Practices
Use Progressive Disclosure
Use Progressive Disclosure
Always follow this order:
- search_notes - Find relevant meetings (~50 tokens)
- get_note_summary - Review key points (~500 tokens)
- get_note_transcript - Only if exact wording needed (~4,000 tokens)
When to Use Transcripts
When to Use Transcripts
Use full transcripts when you need to:
- Find exact quotes or statements
- Analyze detailed conversation flow
- Understand complete context
- Reference specific discussions
- Quick overview (use summary instead)
- Action items (use get_note_documents)
- General understanding (use summary)
Handle Large Transcripts
Handle Large Transcripts
For very long meetings (2+ hours):
- Expect 5,000-10,000 tokens
- May cause timeout (60 seconds)
- Consider requesting specific sections via summary first
- Use summary to identify relevant parts before loading full transcript
Common Errors
Missing Note ID
Solution: Provide thenoteId parameter.
Invalid Note ID
Solution: Use a positive integer (e.g.,123, not "123" or -1).
Note Not Found
Possible Causes:- Note doesn’t exist
- Note has been deleted
- You don’t have access to this note
search_notes.
Request Timeout
Causes:- Very long meeting transcript (2+ hours)
- Server load
- Use
get_note_summaryinstead - Retry after a short delay
- Contact support if problem persists
Performance
Response Time:| Meeting Length | Tokens | Response Time |
|---|---|---|
| 30 minutes | ~1,500 | ~2 seconds |
| 1 hour | ~3,000 | ~3 seconds |
| 2 hours | ~6,000 | ~5 seconds |
| 3+ hours | ~9,000+ | ~8 seconds (may timeout) |
Cache BehaviorTranscripts are cached for 15 minutes. Subsequent requests for the same note will be faster.

