Skip to content
Gryz Academy

Use Notes with MCP

Connect Gryz MCP and use list_notes, create_note, append_note, update_note, and delete_note — with example prompts, access modes, and rate limits.

Updated · Reviewed by Jacob

Before you start

  • A Gryz account (free tier includes MCP and one Note; Pro includes unlimited Notes)
  • MCP connected — follow Connect Gryz MCP in Cursor if you have not already
  • Server URL: https://www.gryz.ai/api/mcp/ (always use www and a trailing slash)

Notes MCP tools

ToolPurpose
list_notesSearch and list Notes (titles, previews, IDs, origin, AI access mode)
create_noteCreate a new private Markdown Note
append_noteAdd text to the end (preferred for logs and running lists)
update_noteReplace title and/or content
delete_noteSoft-delete a Note

Note IDs are UUIDs. Always list_notes first if you need to target a specific Note by ID.

Optional list_notes filters:

  • q — case-insensitive search in title and body
  • sourceme (web-authored), agent (any client), or an exact client name

Full input tables: MCP tools reference.

Example prompts

Create and append

Create a Gryz note titled "Sprint backlog" with this markdown:
- Ship Notes docs
- Fix publish modal copy
Append to my Gryz note "Sprint backlog":
- Review MCP rate limits

List and search previews

List my Gryz notes updated in the last week
Search my Gryz notes for "onboarding" and show titles and previews

Update and delete

Update Gryz note <uuid> — replace the content with the markdown I paste next
Delete Gryz note <uuid>

AI access modes

list_notes can search every live Note and returns its title plus a content preview. Gryz does not currently expose a get_note tool for retrieving a Note's complete body. Mutations to an existing Note (append_note, update_note, and delete_note) fail when that Note is read-only for AI; creating a separate Note is unaffected.

Enable editing in the web app:

  1. Open the Note at /my-docs/notes/[id]/
  2. Check Let AI assistants edit this note in the footer
  3. Retry the MCP call

New Notes created through MCP are editable by MCP by default unless you change access in the web UI afterward.

Notes vs publish_document

GoalTool
Private draft or agent scratch padcreate_note / append_note
Shareable link for otherspublish_document

publish_document creates a document with visibility public or restricted. It does not convert a Note, and list_notes returns only a preview rather than the complete Note body. To publish an existing Note accurately, use Publish as document in My Docs — see Manage Notes in My Docs.

Rate limits (hourly, per tool)

Limits roll in a one-hour window and vary by plan:

Tool groupFree (Starter)ProPro Plus
List Notes120240480
Create Note20120240
Update / append Note40180360
Delete Note2060120

If you hit a limit, wait for the window to roll or reduce automation frequency. Errors name the tool and retry guidance.

Troubleshooting

IssueFix
Notes tools missingConfirm OAuth completed; restart the MCP client; verify documents scope
create_note quota errorFree tier allows one live Note — delete or upgrade
Append/update/delete failedNote may be read-only for AI — enable collaboration in the web editor
Wrong Note updatedUse list_notes to copy the correct UUID
Need a public URLUse publish_document, not create_note

Reference

Was this page helpful?