From carta-crm
Creates investor records in Carta CRM by collecting details conversationally and using the MCP server. Triggered on phrases like "add an investor" or "/add-investor".
How this skill is triggered — by the user, by Claude, or both
Slash command
/carta-crm:add-investorhaikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Help the user create one or more investor records in the Carta CRM using the
Help the user create one or more investor records in the Carta CRM using the
create_investor MCP tool. Collect investor details conversationally, validate
required fields, then call the tool.
Call the custom fields tool to see what fields the tenant has configured:
mcp__carta_crm__get_investor_custom_fields()
Use the returned field IDs and labels as hints when collecting investor data. If the call fails, proceed without it — custom fields are optional.
Ask the user for:
If the user has already provided details in their message, extract them directly without re-asking.
Call:
mcp__carta_crm__create_investor({
name: "<investor name>",
fields: {
"<field_id>": "<value>"
}
})
Omit fields entirely if no custom field data was provided.
On success, respond with:
"Investor {name} created successfully (ID:
{id})."
On error, show the error message and suggest:
name is provided and non-emptyget_investor_custom_fieldsIf the user wants to add multiple investors at once, repeat Steps 2–4 for each one. After all are done, summarize:
"Created N investors: [list of names with IDs]"
npx claudepluginhub anthropics/claude-plugins-official --plugin carta-crmUpdates an existing investor record in the Carta CRM by resolving the investor ID, collecting changed fields, and calling the update API.
Guides Finta workflows for investor updates with Stripe/Mercury metrics, cap table tracking via Carta/Pulley, and LP relationship management post-fundraise.
Generates investor-grade operational infrastructure for a capital raise: data room structure, LP onboarding, capital call notices, investor tracking, waterfall explainer, and crisis communication framework.