Back to Cherry Studio

Cherry Tool Guide

resources/skills/cherry-tool-guide/SKILL.md

2.0.05.8 KB
Original Source

Cherry Tool Guide

Cherry Studio injects first-party tools into your session over three MCP servers (mcp__cherry-tools__*, mcp__agent-memory__*, mcp__skills__*). They act on the running app — the user's knowledge bases, IM channels, schedules, managed CLIs, and skill library — through boundaries only Cherry owns. Shell and file tools cannot reach those boundaries correctly, so when a task matches a row below, route through the named tool rather than improvising with Bash/Write.

This file is a router. It carries only the global rules and the intent → tool → reference table. Each reference holds that domain's prerequisites, sequencing, conditional availability, output interpretation, recovery, and examples. Read the one reference the task needs (and any it cross-links to) before calling — don't work from this page alone.

Tool names here are fully qualified (mcp__server__tool); the exact names exposed in your session are authoritative if they ever differ. This guide never restates argument shapes — the live tool schema in your session is the authoritative source for parameter names, enums, and required fields. Read it before every call.

Global rules

  • Check availability first. Several tools are conditional (each reference says which). If a tool is not in your live tool list, its capability is unavailable in this session — say so honestly and stop; never pretend a call succeeded or fabricate a result.
  • Don't reach around Cherry's mutation boundaries. Knowledge bases, IM channels, schedules, managed CLIs, and skills are mutated only through these tools. Do not shell out to npm install, git clone, crontab, or hand-edit knowledge files to accomplish these — the tool does bookkeeping (registration, scoping, approval, sync) that a raw shell command skips. Shell is fine for inspection (e.g. command -v to probe PATH) — just not to perform the owned mutation.
  • Honor approval. mcp__cherry-tools__kb_manage, mcp__cherry-tools__cli_install, and mcp__skills__install_skill mutate durable state and are gated by the session's approval mode. Call them only once the user's intent is clear; if approval is declined, stop and report — do not retry the same effect through the shell.
  • Intent still gates auto-approved effects. Memory writes, schedule changes, notifications, and agent/channel configuration may execute without an approval card. Do not call them merely because they are available; first make sure the user requested the effect or it is necessary to complete an already-approved task.

Routing table

User intentRoute toReference
Look up current/online facts, news, docsmcp__cherry-tools__web_searchmcp__cherry-tools__web_fetchweb.md
Browser interaction (click, forms, screenshots)(unavailable via web built-ins)web.md
Answer from the user's own documentsmcp__cherry-tools__kb_listmcp__cherry-tools__kb_searchmcp__cherry-tools__kb_readknowledge.md
Add / delete / re-index knowledgemcp__cherry-tools__kb_manage (resolve IDs first; needs approval)knowledge.md
Recall a past fact, correction, or preferencemcp__agent-memory__memory (search) before re-askingmemory.md
Save durable knowledge vs. a one-off eventmcp__agent-memory__memory (update vs. append)memory.md
Schedule a recurring / future taskmcp__cherry-tools__cron (Cherry scheduling only)autonomy.md
Proactively message the user or send a filemcp__cherry-tools__notifyautonomy.md
Inspect / connect / repair IM channels, rename agentmcp__cherry-tools__configautonomy.md
Generate an imagemcp__cherry-tools__generate_image (needs a painting model)outputs.md
Declare final deliverable file(s)mcp__cherry-tools__report_artifactsoutputs.md
Find / install a command-line toolcommand -v check → mcp__cherry-tools__cli_listmcp__cherry-tools__cli_searchmcp__cherry-tools__cli_install (approval)cli.md
Find / install a new capability skillmcp__skills__search_skillsmcp__skills__install_skill (approval)skills.md

When a tool isn't there

Two different situations, don't confuse them:

  • The tool is absent from your live list → the capability is unavailable this session (e.g. no knowledge base in scope, or CLI management disabled for a shell-less agent). Explain what's missing and what the user can do; don't work around it with shell/file tools. The reference for that domain says exactly when it can be absent.
  • The tool is listed but reports a missing dependency → e.g. mcp__cherry-tools__notify with no connected channel, or mcp__cherry-tools__generate_image with no painting model. It stays listed and returns a note; relay the note and point the user at configuration — don't retry blindly or fake success.

On any tool error result (bad ID, unsupported channel/file, invalid recipe), read the message and correct the call; don't silently retry the same arguments. On declined approval, stop and report — never re-attempt the mutation through a different route.

Out of scope

Not covered here: SDK-native Read/Edit/Bash and orchestration tools; third-party (user-configured) MCP servers; the AI-SDK chat read_file attachment reader (a chat-path tool, not exposed on this MCP surface); and the role-specific mcp__assistant__* navigation/diagnosis tools, which belong to the Cherry Assistant and its own guide.