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.

Write tools declare that they should be confirmed on every call. Whether a confirmation actually appears is up to the AI app. Read tools run without confirmation because they change nothing.

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.

ParameterTypeRequiredDefaultConstraints
querystringRequired1–200
limitintegerOptional201–50

Read a note

clone_get_memo

Opens one note by ID and returns its full content, tags and dates.

ParameterTypeRequiredDefaultConstraints
memoIdstringRequired≥ 1

List recent notes

clone_list_recent_memos

Lists your most recently updated notes. It cannot filter by topic — use search for that.

ParameterTypeRequiredDefaultConstraints
limitintegerOptional201–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.

ParameterTypeRequiredDefaultConstraints
memoIdstringRequired≥ 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.

ParameterTypeRequiredDefaultConstraints
memoIdstringOptional
minSimilaritynumberOptional0.40–1
limitintegerOptional101–30

List Clone+ chat sessions

clone_list_recent_chat_sessions

Lists your recent chat conversations inside the Clone+ app.

ParameterTypeRequiredDefaultConstraints
limitintegerOptional201–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.

ParameterTypeRequiredDefaultConstraints
sessionIdstringRequired≥ 1
messageLimitintegerOptional501–200

Search Clone+ chat messages

clone_search_chat_messages

Searches across the messages of your past chats in the Clone+ app.

ParameterTypeRequiredDefaultConstraints
querystringRequired1–200
limitintegerOptional201–50

List hub notes

clone_list_hub_memos

Returns your most connected, central notes — a way to see where your interests concentrate.

ParameterTypeRequiredDefaultConstraints
limitintegerOptional101–30

List unlinked notes

clone_list_isolated_memos

Returns notes with no connections at all — the ones not yet woven into your network.

ParameterTypeRequiredDefaultConstraints
limitintegerOptional201–50

List topic clusters

clone_list_memo_clusters

Lists clusters of interlinked notes — the subject areas your notes cover. Isolated notes are not included.

ParameterTypeRequiredDefaultConstraints
limitintegerOptional101–30
minSizeintegerOptional2≥ 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.

ParameterTypeRequiredDefaultConstraints
memoIdstringRequired≥ 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.

ParameterTypeRequiredDefaultConstraints
kindstringOptional"summary"summary / full / summary_with_full
titlestringOptional0–200
summarystringOptional0–10000
fullTranscriptstringOptional0–40000
codebasestringOptional0–60
descriptionstringOptional0–120
tagsarray<string>Optionalmax 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.

ParameterTypeRequiredDefaultConstraints
contentstringRequired1–50000
titlestringOptional0–200
tagsarray<string>Optionalmax 20

Link two notes

clone_add_memo_link

Links two notes together. If the link already exists nothing changes — it will not be duplicated.

ParameterTypeRequiredDefaultConstraints
memoId1stringRequired≥ 1
memoId2stringRequired≥ 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.

ParameterTypeRequiredDefaultConstraints
memoIdstringRequired≥ 1
tagstringRequired1–60
The maximum content length depends on your plan. See "Plans and limits".