🔍search-fundraisings
- プラグイン
- carta-crm
- ソース
- GitHub で見る ↗
説明
Carta CRMから募金記録を検索・取得します。 次のような場合に使用: ユーザーが「募金を検索する」「募金ラウンドを調べる」「[名前]の募金詳細を表示する」「IDで募金を取得する」「募金の一覧を表示する」「どのような募金を保有しているのか」または「/search-fundraisings」というようなことを言った場合 募金の詳細情報(ID、名前、ステージ、カスタムフィールドなど)を返します。返されたfundraising IDはupdate-fundraising skillと連携して使用できます。
原文を表示
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で情報を取得したい
- ✓保有している募金の一覧を表示したい
本文
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 による自動翻訳です。