🔍search-fundraisings
- プラグイン
- carta-crm
- ソース
- GitHub で見る ↗
説明
Carta CRM から資金調達レコードを検索・取得します。 次のような場合に使用: ユーザーが「資金調達を検索して」「ファンドレイジングを探して」「資金調達ラウンドを調べて」「[名前]の資金調達の詳細を表示して」「IDで資金調達を取得して」「資金調達の一覧を見せて」「どんな資金調達があるか教えて」または「`/search-fundraisings`」などと発言した場合。 ID・名称・ステージ・カスタムフィールドなどを含む資金調達の詳細情報を返します。 返された資金調達 ID は、`update-fundraising` スキルと組み合わせて使用できます。
原文を表示
Searches for and retrieves fundraising records from the Carta CRM. Use this skill when the user says things like "find a fundraising", "search fundraisings", "look up a fundraising round", "show fundraising details for [name]", "get fundraising by ID", "list fundraisings", "what fundraisings do we have", or "/search-fundraisings". Returns fundraising details including ID, name, stage, and custom fields. The fundraising ID returned can be used with the update-fundraising skill.
ユースケース
- ✓資金調達レコードを検索・取得したい
- ✓特定の資金調達の詳細情報を確認したい
- ✓資金調達一覧を表示したい
- ✓資金調達IDで情報を取得したい
本文(日本語訳)
概要
Carta CRM内のファンドレイジングを検索します。 ユーザーがIDを指定した場合は、該当する1件のレコードを直接取得します。 それ以外の場合は検索ツールを使用し、結果を読みやすい形式でまとめて返します。 ユーザーが更新時に参照できるよう、ファンドレイジングIDは必ず表示してください。
ステップ 1 — 検索モードの決定
- ID指定 — ユーザーがファンドレイジングIDを指定した場合 →
get_fundraisingを呼び出す - 名前 / キーワード / ステージ指定 — ユーザーが名前またはステージを指定した場合 →
search_fundraisingを呼び出す
判断が難しい場合は検索をデフォルトとし、検索キーワードをユーザーに確認してください。
ステップ 2 — 検索の実行
ID指定の場合:
mcp__carta_crm__get_fundraising({ id: "<fundraising id>" })
名前 / キーワード指定の場合:
mcp__carta_crm__search_fundraising({
query: "<search term>",
limit: 20
})
ユーザーがステージ名で絞り込む場合は、まず get_fundraising_stages を呼び出してステージ名をステージIDに解決してから、stages: ["<stage id>"] を渡してください。
ユーザーがより多くの結果の表示を求めた場合は limit を増やしてください。
ページネーションには offset を使用してください。
ステップ 3 — 結果の表示
取得したファンドレイジングごとに、空でないフィールドをすべて読みやすい形式でまとめて表示してください。
IDは必ず目立つ形で示してください — ユーザーが /update-fundraising を実行する際に必要になります。
ファンドレイジングが見つからなかった場合:
「検索条件に一致するファンドレイジングが見つかりませんでした。別の名前またはキーワードでお試しください。」
結果の総件数を表示し、さらに結果がある場合はページネーションの利用を提案してください。
原文(English)を表示
Overview
Search for fundraisings in the Carta CRM. If the user provided an ID, fetch the single record directly. Otherwise use the search tool and return results in a readable summary. Always surface the fundraising ID so the user can reference it for updates.
Step 1 — Determine search mode
- By ID — user provided a fundraising ID → call
get_fundraising - By name / keyword / stage — user provided a name or stage → call
search_fundraising
If it's unclear, default to search and ask for a search term.
Step 2 — Execute the search
By ID:
mcp__carta_crm__get_fundraising({ id: "<fundraising id>" })
By name / keyword:
mcp__carta_crm__search_fundraising({
query: "<search term>",
limit: 20
})
If the user filtered by stage name, call get_fundraising_stages first to resolve
the name to a stage ID, then pass stages: ["<stage id>"].
Increase limit if the user asks to see more results. Use offset to paginate.
Step 3 — Present results
For each fundraising returned, display all non-empty fields in a readable summary.
Always show the ID prominently — the user will need it to run /update-fundraising.
If no fundraisings are found:
"No fundraisings found matching your search. Try a different name or keyword."
Note the total count and offer to paginate if there are more results.
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。