Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.cleve.ai/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Cleve exposes an MCP (Model Context Protocol) server at:
https://app.cleve.ai/mcp
Once connected, your agent gets read/write access to the same workspace your team uses — notes, folders, skills, memory, and org context. Authentication is handled via OAuth on the first connection. You’ll be prompted to sign in with your Cleve account; no manual token management required.

Quick Start

Run this in your terminal:
claude mcp add cleve --transport http https://app.cleve.ai/mcp
After the first connection, you’ll be redirected through the Cleve OAuth flow. Once authorised, the token is stored by your client and reused automatically.
You can also find these snippets in Settings → Developer → MCP Server inside the Cleve app.

Available Tools

Notes

ToolDescriptionParameters
cleve_search_notesSearch notes by keywordquery (required), limit
cleve_read_noteRead a note by IDnoteId (required)
cleve_list_recent_notesList recently updated noteslimit
cleve_list_notes_in_folderList notes in a specific folderfolderId (required)
cleve_count_notesGet total and pinned note countsfolderId
cleve_citeGet citation metadata for specific note IDsnoteIds[] (required)
cleve_create_noteCreate a new notetitle, content, folderId, isPinned
cleve_edit_noteUpdate a note’s title, content, or propertiesnoteId (required), title, content, folderId, isPinned
cleve_move_noteMove a note to a different foldernoteId (required), folderId (required, null = unfiled)
cleve_pin_notePin a notenoteId (required)
cleve_unpin_noteUnpin a notenoteId (required)
cleve_publish_notePublish a note publiclynoteId (required)
cleve_unpublish_noteUnpublish a notenoteId (required)
cleve_share_noteEnable or disable link sharing for a notenoteId (required), isPublic (required)
cleve_delete_noteDelete a note permanentlynoteId (required)

Folders

ToolDescriptionParameters
cleve_list_foldersList all folders
cleve_create_folderCreate a new folder (optionally nested)name (required), parentId
cleve_rename_folderRename a folderfolderId (required), name (required)
cleve_delete_folderDelete a folder (its notes move to unfiled)folderId (required)

Skills Marketplace

ToolDescriptionParameters
cleve_list_skillsList your created and installed skills
cleve_search_marketplaceBrowse published skills in the marketplacequery, category
cleve_create_skillCreate a new AI skillname (required), prompt (required), description, category, model
cleve_update_skillUpdate an existing skillskillId (required), name, prompt, description, category, model
cleve_publish_skillPublish a skill to the marketplaceskillId (required)
cleve_unpublish_skillRemove a skill from the marketplaceskillId (required)
cleve_delete_skillDelete a skill permanentlyskillId (required)
cleve_install_skillInstall a skill from the marketplaceskillId (required)
cleve_uninstall_skillUninstall a skillskillId (required)

Memory

ToolDescriptionParameters
cleve_get_memoryRead the current AI memory note
cleve_get_memory_settingsRead memory feature settings
cleve_toggle_memoryEnable or disable memoryenabled (required)
cleve_clear_memoryWipe memory content and start fresh

Organizations

These tools are available when you belong to one or more Cleve organizations.
ToolDescriptionParameters
cleve_list_orgsList organizations you belong to (active org is marked with *)
cleve_switch_orgSwitch the active organization for this sessionorgId (required)
Org context persists for 30 minutes after switching, then resets to your default.

Authentication Details

The MCP server uses OAuth 2.0 via Clerk. On first connect:
  1. Your client opens the Cleve authorization URL
  2. You sign in with your Cleve account
  3. Your client stores the access token and sends it as a Bearer header on every request
The server reads your user identity and active organization from the token. You do not need an API key for MCP — it’s separate from the REST API key system. If you belong to multiple organizations, use cleve_list_orgs to see them and cleve_switch_org to change context mid-session.

Example Prompts

Search my notes for anything related to "product roadmap" and summarize the key themes.
Create a folder called "2026 Planning" and move all notes with "Q1" in the title into it.
Read my memory note and tell me what context you already have about me.
Find the brand guide note and quote the tone-of-voice rules verbatim.