🔍search-notes
- プラグイン
- carta-crm
- ソース
- GitHub で見る ↗
説明
Carta CRMからノートレコードを検索・取得します。 次のような場合に使用: ユーザーが「ノートを探して」「ノートを検索して」「ノートを調べて」「[トピック]についてのノートを表示して」「ノートをリストアップして」「[キーワード]に言及しているノートを探して」などと言う場合、または「/search-notes」コマンドが実行される場合。 ID、タイトル、テキストコンテンツなどのノート詳細情報を返します。
原文を表示
Searches for and retrieves note records from the Carta CRM. Use this skill when the user says things like "find a note", "search notes", "look up a note", "show me notes about [topic]", "list notes", "find notes mentioning [keyword]", or "/search-notes". Returns note details including ID, title, and text content.
ユースケース
- ✓ノートレコードを検索・取得する
- ✓特定のトピックについてのノートを表示する
- ✓キーワードに言及しているノートを探す
- ✓ノートをリストアップする
本文
Overview
Search for notes in the Carta CRM by keyword using search_notes.
Return results in a readable summary.
Step 1 — Collect the search term
If the user provided a keyword or topic, use it directly. If no search term was given, ask for one.
Step 2 — Execute the search
mcp__carta_crm__search_notes({
query: "<search term>",
limit: 20
})
Increase limit if the user asks to see more results. Use offset to paginate
when remainingCount > 0.
Step 3 — Present results
For each note returned, display:
- Title
- Text content (truncated to ~200 chars if long)
- Creation date and owner if available
If no notes are found:
"No notes found matching your search. Try a different keyword."
Note the total count and offer to paginate if there are more results.
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。