claude-skills/

Anthropic公式スキル・プラグインの日本語ディレクトリ

last sync 22h ago
スキルOfficialproductivity

🔍search-companies

プラグイン
carta-crm

説明

Carta CRM から企業レコードを検索・取得します。 次のような場合に使用: ユーザーが「会社を探して」「会社を検索して」「会社を調べて」「[名前] の会社の詳細を見せて」「IDで会社を取得して」「ドメインで会社を取得して」「会社を一覧表示して」「どんな会社があるか」または「/search-companies」などと発言した場合。 ID、名前、カスタムフィールドなどの企業詳細情報を返します。 返された企業 ID は、update-company スキルと組み合わせて使用できます。

原文を表示

Searches for and retrieves company records from the Carta CRM. Use this skill when the user says things like "find a company", "search companies", "look up a company", "show me company details for [name]", "get company by ID", "get company by domain", "list companies", "what companies do we have", or "/search-companies". Returns company details including ID, name, and custom fields. The company ID returned can be used with the update-company skill.

ユースケース

  • 会社を検索・取得したい
  • 企業の詳細情報を確認したい
  • 企業IDまたはドメインで情報を取得したい
  • 企業一覧を表示したい

本文(日本語訳)

概要

Carta CRM 内の企業を検索します。 ユーザーが提供した情報に基づいて、適切なツールを選択してください。 後続の更新操作で参照できるよう、常に企業 ID をユーザーに提示してください。


ステップ 1 — 検索モードの決定

  • ドメイン指定 — ユーザーがウェブサイトのドメイン(例: "stripe.com")を提供した場合 → fetch_company_by_domain を使用
  • 名前 / キーワード指定 — ユーザーが企業名またはキーワードを提供した場合 → search_companies を使用

判断が難しい場合は、名前検索をデフォルトとし、検索ワードをユーザーに確認してください。


ステップ 2 — 検索の実行

ドメイン指定の場合:

mcp__carta_crm__fetch_company_by_domain({ domain: "<ドメイン>" })

名前 / キーワード指定の場合:

mcp__carta_crm__search_companies({
  query: "<検索ワード>",
  limit: 20
})

ユーザーがより多くの結果の表示を求めた場合は limit を増やしてください。 ページネーションには offset を使用してください。


ステップ 3 — 結果の表示

返された企業ごとに、値が存在するすべてのフィールドを読みやすい形式でサマリー表示してください。 企業 ID は常に目立つ形で表示してください — /update-company を実行する際にユーザーが必要とします。

企業が見つからなかった場合:

「検索条件に一致する企業が見つかりませんでした。別の名前、キーワード、またはドメインでお試しください。」

複数の結果が返された場合は、すべてを一覧表示し、合計件数を併記してください。

原文(English)を表示

Overview

Search for companies in the Carta CRM. Choose the right tool based on what the user provided. Always surface the company ID so the user can reference it for updates.

Step 1 — Determine search mode

  • By domain — user provided a website domain (e.g. "stripe.com") → use fetch_company_by_domain
  • By name / keyword — user provided a company name or keyword → use search_companies

If it's unclear, default to search by name and ask for a search term.

Step 2 — Execute the search

By domain:

mcp__carta_crm__fetch_company_by_domain({ domain: "<domain>" })

By name / keyword:

mcp__carta_crm__search_companies({
  query: "<search term>",
  limit: 20
})

Increase limit if the user asks to see more results. Use offset to paginate.

Step 3 — Present results

For each company returned, display all non-empty fields in a readable summary. Always show the ID prominently — the user will need it to run /update-company.

If no companies are found:

"No companies found matching your search. Try a different name, keyword, or domain."

If multiple results are returned, list them all and note the total count.

原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。