MCP App Store
Productivity
CraftNote icon

CraftNote

by JoyoLabs Inc

Overview

CraftNote lets signed-in users search, browse, and read their own notes and notes shared directly with them, including transcripts, summaries, attendees, and action items, and semantically retrieve relevant excerpts from their own indexed notes.

Tools

ask_notes

ChatGPT
Ask a free-text question about the user's CraftNote library and get back the most relevant excerpts. Use this when the user's question refers to an idea, theme, or topic — not a specific keyword they remember. Examples: "what did I say about pricing?", "what's been on my mind this week?", "did I discuss the Q3 plan with anyone?". Returns {matches: [...]} where each match is {note_id, note_title, snippet, score}snippet is a short excerpt (~500 chars) drawn from the note transcript or summary. Follow up with get_note(note_id) to read the full note when an excerpt looks relevant and you need more context. score is cosine similarity (0–1) between the question and the matched chunk, not a confidence guarantee. search_notes is the better choice when the user's wording (a name, a date, a keyword they explicitly said) should literally appear in the matching note.

get_note

ChatGPT
Fetch ONE specific note by id. For 2 or more ids in the same turn, get_notes (bulk) is faster. Requires a known note id from a prior search_notes or ask_notes call — used when the user wants the full content of a note they've been shown an excerpt from. By default returns only the summary — pass fields to request more. The note must either belong to the signed-in user OR have been shared directly with them. The response carries an ownership field ("owned" or "shared"). For shared notes the folder_id field reflects the signed-in user's filing (where THEY put it), not the owner's folder — and is omitted when the user hasn't filed it. Returns {error: "not_found"} when the note doesn't exist or isn't accessible — surface that to the user.

get_notes

ChatGPT
Fetch UP TO 10 notes in ONE call. Use this whenever you have 2 or more ids — much faster than calling get_note repeatedly. Same per-note response shape as get_note, same fields controls. For shared notes the folder_id on each returned note reflects the signed-in user's filing, not the owner's folder. Especially useful for "what did I commit to" / "summarize last week's calls" / "compare these meetings" — synthesis queries that touch multiple notes at once. Response: {notes: [...], not_found_ids?: [...]}. Missing ids land in not_found_ids; the surviving notes come back in notes in the order they were requested.

list_action_items

ChatGPT
Aggregate action items / commitments / todos across the user's notes into one flat list with note citations — covers BOTH owned notes and shared notes the user has access to. The right tool for "what did I commit to this week", "what's on my plate", "list my todos" — single round trip, structured output. Filter by folder_id to scope to a single folder; this includes shared notes the user has filed there (filing is per-recipient). Returns {action_items: [{task, priority, due_date?, completed, note_id, note_title, note_created_at}], owned_notes_scanned, shared_notes_scanned, owned_truncated?, shared_truncated?}. When either *_truncated is true, narrow with since/until or folder_id.

list_folders

ChatGPT
List the signed-in user's folders with {id, name} per folder. Returns the folder ids needed by search_notes(folder_id=...) — useful when the user asks "what's in my X folder?" and the folder id isn't already known.

search_notes

ChatGPT
Find or browse notes accessible to the signed-in user — covers both their own notes and notes shared directly with them. Each result carries an ownership field ("owned" or "shared") so you can attribute it. Use WITHOUT query to list the most recent notes — great for "what's my latest note", "what did I record this week", or "show me my podcasts". Use WITH query to keyword-search across titles, transcripts, and summaries (multi-word queries match all tokens / AND). Filter by since/until (ISO date "YYYY-MM-DD") for date ranges, and by type (audio, text, meeting, document, youtube, podcast, video_link) for a specific note kind. Filter by folder_id to scope to a single folder — this includes BOTH the user's own notes filed in that folder AND shared notes the user has filed in that folder (filing is per-recipient, so the same shared note can appear in different folders for different recipients). The folder_id on each result reflects the signed-in user's view: for owned notes, the user's own folder; for shared notes, the folder the user filed it in (or omitted if unfiled). Returns up to limit matches with id, title, type, created_at, ownership, and a short snippet. Use get_note afterward to read the full transcript / summary of a specific result. search_notes is the better choice when the user's wording (a specific keyword, date range, or note type) should literally appear in the matching note — ask_notes is for thematic / semantic questions.

Example Prompts

Click any prompt to copy it.

App Stats

6

Tools

2

Prompts

ChatGPT

Platforms

Category

Memory Notes

Works with

ChatGPT

Data refreshed daily