From carta-crm
Partially updates an existing fundraising record in Carta CRM by ID or name search. Only explicitly provided fields are changed.
How this skill is triggered — by the user, by Claude, or both
Slash command
/carta-crm:update-fundraisinghaikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Partially update an existing fundraising. Only fields provided are modified — this is
Partially update an existing fundraising. Only fields provided are modified — this is a partial update, not a replacement. First resolve the fundraising ID, collect what to change, then call the update tool.
If the user provided a fundraising ID directly, use it and skip to Step 3.
If only a name or keyword was given, search first:
mcp__carta_crm__search_fundraising({ query: "<name>", limit: 10 })
If multiple fundraisings match, present the list and ask the user to confirm which one to update (show name and ID for each).
Ask the user what they want to change:
get_fundraising_stages to resolve name → ID)If the user wants to update custom fields but isn't sure of field IDs, fetch the schema first:
mcp__carta_crm__get_fundraising_custom_fields()
Important: Only include fields that are explicitly being changed. Omit everything else.
Call:
mcp__carta_crm__update_fundraising({
id: "<fundraising id>",
name: "<updated name>",
stageId: "<stage id>",
fields: {
"<field_id>": "<value>"
}
})
Omit any key that is not being updated.
On success, respond with a summary of what changed:
"Fundraising {name} updated (ID:
{id}). Changed: [list of changed fields]"
On error, show the error message and suggest:
/search-fundraisings to find itget_fundraising_stages to list optionsIf the user wants to apply the same change to multiple fundraisings, repeat Steps 1 and 3–4 for each. Summarize at the end:
"Updated N fundraisings: [list of names]"
npx claudepluginhub anthropics/claude-plugins-official --plugin carta-crmCreates fundraising records in Carta CRM by collecting details conversationally and using the Carta CRM MCP server tools.
Sets up first fundraise pipeline in Finta: adds investors via manual/CSV/Aurora AI, configures deal stages, creates deal rooms, sends updates. For new fundraises or Finta onboarding.
Updates CRM pipeline deals: move stages, update values, add notes, track velocity. Provides before/after view and pipeline metric impact.