Tool reference
The tools an AI can use once connected: 12 for reading and 4 for writing.
Read and write
If your access token does not grant write access, the write tools are not listed at all — the AI cannot even see that they exist.
Read(12)
Search notes
clone_search_memos
Finds notes by keyword. Case-insensitive substring match on title and body — short distinctive words work better than long phrases.
| Parameter | Type | Required | Default | Constraints |
|---|---|---|---|---|
query | string | Required | — | 1–200 |
limit | integer | Optional | 20 | 1–50 |
Read a note
clone_get_memo
Opens one note by ID and returns its full content, tags and dates.
| Parameter | Type | Required | Default | Constraints |
|---|---|---|---|---|
memoId | string | Required | — | ≥ 1 |
List recent notes
clone_list_recent_memos
Lists your most recently updated notes. It cannot filter by topic — use search for that.
| Parameter | Type | Required | Default | Constraints |
|---|---|---|---|---|
limit | integer | Optional | 20 | 1–100 |
List a note's links
clone_list_memo_links
Lists the notes connected to a given note, in both directions, along with the reason and relation type you recorded.
| Parameter | Type | Required | Default | Constraints |
|---|---|---|---|---|
memoId | string | Required | — | ≥ 1 |
Suggest links for a note
clone_suggest_memo_links
Suggests note pairs worth linking, scoring text similarity together with graph distance, shared neighbours and shared tags.
| Parameter | Type | Required | Default | Constraints |
|---|---|---|---|---|
memoId | string | Optional | — | — |
minSimilarity | number | Optional | 0.4 | 0–1 |
limit | integer | Optional | 10 | 1–30 |
List Clone+ chat sessions
clone_list_recent_chat_sessions
Lists your recent chat conversations inside the Clone+ app.
| Parameter | Type | Required | Default | Constraints |
|---|---|---|---|---|
limit | integer | Optional | 20 | 1–100 |
Read a Clone+ chat session
clone_get_chat_session
Opens one past chat from the Clone+ app and returns the full transcript in order.
| Parameter | Type | Required | Default | Constraints |
|---|---|---|---|---|
sessionId | string | Required | — | ≥ 1 |
messageLimit | integer | Optional | 50 | 1–200 |
Search Clone+ chat messages
clone_search_chat_messages
Searches across the messages of your past chats in the Clone+ app.
| Parameter | Type | Required | Default | Constraints |
|---|---|---|---|---|
query | string | Required | — | 1–200 |
limit | integer | Optional | 20 | 1–50 |
List hub notes
clone_list_hub_memos
Returns your most connected, central notes — a way to see where your interests concentrate.
| Parameter | Type | Required | Default | Constraints |
|---|---|---|---|---|
limit | integer | Optional | 10 | 1–30 |
List unlinked notes
clone_list_isolated_memos
Returns notes with no connections at all — the ones not yet woven into your network.
| Parameter | Type | Required | Default | Constraints |
|---|---|---|---|---|
limit | integer | Optional | 20 | 1–50 |
List topic clusters
clone_list_memo_clusters
Lists clusters of interlinked notes — the subject areas your notes cover. Isolated notes are not included.
| Parameter | Type | Required | Default | Constraints |
|---|---|---|---|---|
limit | integer | Optional | 10 | 1–30 |
minSize | integer | Optional | 2 | ≥ 2 |
Show a note's place in the graph
clone_get_memo_position
Reports where one note sits in your graph: link count, centrality, which cluster it belongs to, and whether it is isolated.
| Parameter | Type | Required | Default | Constraints |
|---|---|---|---|---|
memoId | string | Required | — | ≥ 1 |
Write(4)
Save this session as a note
clone_save_session
Saves the current conversation as a note — a summary, the full transcript, or both. Works from any MCP client.
| Parameter | Type | Required | Default | Constraints |
|---|---|---|---|---|
kind | string | Optional | "summary" | summary / full / summary_with_full |
title | string | Optional | — | 0–200 |
summary | string | Optional | — | 0–10000 |
fullTranscript | string | Optional | — | 0–40000 |
codebase | string | Optional | — | 0–60 |
description | string | Optional | — | 0–120 |
tags | array<string> | Optional | — | max 20 |
Create a note
clone_create_memo
Creates a new note. If you omit the title, it is taken from the first line of the content.
| Parameter | Type | Required | Default | Constraints |
|---|---|---|---|---|
content | string | Required | — | 1–50000 |
title | string | Optional | — | 0–200 |
tags | array<string> | Optional | — | max 20 |
Link two notes
clone_add_memo_link
Links two notes together. If the link already exists nothing changes — it will not be duplicated.
| Parameter | Type | Required | Default | Constraints |
|---|---|---|---|---|
memoId1 | string | Required | — | ≥ 1 |
memoId2 | string | Required | — | ≥ 1 |
Add a tag to a note
clone_add_memo_tag
Adds one tag to an existing note. It cannot remove tags or change the note's content.
| Parameter | Type | Required | Default | Constraints |
|---|---|---|---|---|
memoId | string | Required | — | ≥ 1 |
tag | string | Required | — | 1–60 |