From carta-crm
Searches for and retrieves company records from the Carta CRM by domain, name, or keyword. Surfaces company IDs for use with the update-company skill.
How this skill is triggered — by the user, by Claude, or both
Slash command
/carta-crm:search-companieshaikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search for companies in the Carta CRM. Choose the right tool based on what the user
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.
fetch_company_by_domainsearch_companiesIf it's unclear, default to search by name and ask for a search term.
By domain:
crm_call_tool({ "name": "crm:fetch_company_by_domain", "arguments": { domain: "<domain>" } })
By name / keyword:
crm_call_tool({
"name": "crm:search_companies",
"arguments": {
query: "<search term>",
limit: 20
}
})
Increase limit if the user asks to see more results. Use offset to paginate.
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.
Searches companies and contacts in Salesbuildr CRM, looks up customer info, and creates new contacts with required fields.
Searches, creates, updates, and audits HubSpot CRM company records. Covers company fields, industry classification, lifecycle stages, domain matching, and cross-referencing with contacts, deals, and tickets.
Adds company records to the Carta CRM via MCP server. Collects details conversationally and creates records.
claude plugin install carta-crm@claude-plugins-official