Overview
get_note_summary returns a condensed summary of the meeting content generated by AI.
Primary Use Cases:
- Quickly understanding meeting highlights
- Comparing multiple meetings
- Reviewing content without loading full transcripts
- Concise summaries (~200-800 tokens)
- Fast response time (0.5-2 seconds)
- Token efficient (80% savings vs. transcripts)
- 4-6x fewer tokens than full transcripts
- Quick access to key points
- Efficient when comparing multiple meetings
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 |
|---|---|---|
summary | string | AI-generated meeting summary |
Usage Examples
Example 1: Basic Usage
AI Request:Example 2: Combined with search_notes
AI Request:Example 3: Comparing Multiple Meetings
AI Request:When to Use
Use When
Use When
Quick Overview Needed
- Only need meeting highlights
- Full transcript not necessary
- Weekly meeting summaries
- Project progress tracking
- Token savings important
- Fast response required
- Deciding which meetings to review in detail
- Assessing meeting importance
Don't Use When
Don't Use When
Need Exact Quotes
→ Use
get_note_transcript insteadFinding Specific Statements
→ Use get_note_transcript insteadExtracting Action Items
→ Use get_note_documents instead (more structured)Performance
Response Time
| Meeting Length | Average Response | Maximum Response |
|---|---|---|
| 30 minutes | 0.5 seconds | 2 seconds |
| 1 hour | 1 second | 3 seconds |
| 2 hours | 1.5 seconds | 5 seconds |
Token Usage
| Meeting Length | Summary Tokens | Transcript Tokens | Savings |
|---|---|---|---|
| 30 minutes | ~200-400 | ~1,500-2,500 | 85% |
| 1 hour | ~300-600 | ~3,000-5,000 | 88% |
| 2 hours | ~500-800 | ~6,000-10,000 | 90% |
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.

