Help us improve
Share bugs, ideas, or general feedback.
From salesbuildr
Searches companies and contacts in Salesbuildr CRM by term or ID, filters contacts by company, retrieves details, and creates new contacts with required fields like first_name, last_name, company_id.
npx claudepluginhub wyre-technology/msp-claude-plugins --plugin salesbuildrHow this skill is triggered — by the user, by Claude, or both
Slash command
/salesbuildr:companies-contactsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Companies and contacts are the foundation of the Salesbuildr CRM. Companies represent organizations (customers, prospects), while contacts are individuals associated with companies.
Manages Salesbuildr sales opportunities: search pipelines, create new ones, update stages/values, link to companies/contacts.
Manages Attio CRM companies, contacts, notes, and deals via Python scripts: search/get companies, create/update records, add notes, parse URLs. For CRM automation.
Automates Apollo.io lead generation: search organizations, discover contacts, enrich prospect data, manage stages, and build outreach lists via natural language through Composio MCP.
Share bugs, ideas, or general feedback.
Companies and contacts are the foundation of the Salesbuildr CRM. Companies represent organizations (customers, prospects), while contacts are individuals associated with companies.
GET /companies?search=<term>&from=0&size=25
Parameters:
search - Search term for company namefrom - Pagination offsetsize - Results per page (max 100)GET /companies/{id}
Returns full company details including address, phone, and metadata.
GET /contacts?search=<term>&company_id=<id>&from=0&size=25
Parameters:
search - Search by name or emailcompany_id - Filter contacts to a specific companyfrom - Pagination offsetsize - Results per page (max 100)GET /contacts/{id}
POST /contacts
{
"first_name": "Jane",
"last_name": "Smith",
"email": "jane@example.com",
"company_id": 12345,
"phone": "555-0100"
}
Required fields: first_name, last_name, company_id
GET /companies?search=acmeGET /contacts?company_id=12345GET /companies?search=company namePOST /contacts with company_id