Capsule CRM Automation
npx machina-cli add skill ComposioHQ/awesome-claude-skills/capsule-crm-automation --openclawCapsule CRM Automation
Manage your Capsule CRM -- create and update contacts, run powerful filter queries on parties/opportunities/cases, track tasks and projects, browse activity entries, and organize team relationships -- all through natural language commands.
Toolkit docs: composio.dev/toolkits/capsule_crm
Setup
- Add the Composio MCP server to your client configuration:
https://rube.app/mcp - Connect your Capsule CRM account when prompted (OAuth authentication).
- Start issuing natural language commands to manage your CRM.
Core Workflows
1. Run Structured Filter Queries
Query parties, opportunities, or cases (projects) with multiple filter conditions, operators, and sorting.
Tool: CAPSULE_CRM_RUN_FILTER_QUERY
Example prompt:
"Find all Capsule CRM contacts in California tagged as 'VIP' sorted by name"
Key parameters:
entity(required) -- One of:parties,opportunities,kasesfilter(required) -- Filter object with:conditions-- Array of conditions, each with:field-- Field name (e.g., "name", "email", "state", "country", "tag", "owner", "jobTitle", "addedOn")operator-- One of: "is", "is not", "starts with", "ends with", "contains", "is greater than", "is less than", "is after", "is before", "is older than", "is within last", "is within next"value-- Value to compare against
orderBy-- Array of sort objects withfieldanddirection("ascending"/"descending")
embed-- Additional data to include in responsepage/perPage-- Pagination (max 100 per page)
Important field notes:
- Address fields (
city,state,country,zip) are top-level, NOT nested under "address" - Country must be an ISO 3166-1 alpha-2 code (e.g., "US", "GB", "CA")
- Custom fields use
custom:{fieldId}format - Organization fields use
org.prefix (e.g.,org.name,org.tag)
2. List and Manage Contacts (Parties)
Retrieve all contacts with optional filtering by modification date and embedded related data.
Tool: CAPSULE_CRM_LIST_PARTIES
Example prompt:
"List all Capsule CRM contacts modified since January 2025 with their tags and organizations"
Key parameters:
since-- ISO8601 date to filter contacts changed after this dateembed-- Additional data: "tags", "fields", "organisation", "missingImportantFields"page/perPage-- Pagination (max 100 per page, default 50)
3. Create New Contacts
Add people or organizations to your Capsule CRM with full details including emails, phones, addresses, tags, and custom fields.
Tool: CAPSULE_CRM_CREATE_PARTY
Example prompt:
"Create a new person in Capsule CRM: John Smith, VP of Sales at Acme Corp, john@acme.com"
Key parameters:
type(required) -- "person" or "organisation"- For persons:
firstName,lastName,jobTitle,title - For organisations:
name emailAddresses-- Array of{address, type}objectsphoneNumbers-- Array of{number, type}objectsaddresses-- Array of address objects withstreet,city,state,country,zip,type(Home/Postal/Office/Billing/Shipping)organisation-- Link to org by{id}or{name}(creates if not found)tags-- Array of tags by{name}or{id}fields-- Custom field values with{definition, value}websites-- Array of{address, service, type}objectsowner-- Assign owner user{id}
4. Update Existing Contacts
Modify any aspect of a party record including adding/removing emails, phones, tags, and custom fields.
Tool: CAPSULE_CRM_UPDATE_PARTY
Example prompt:
"Update Capsule CRM party 11587: add a work email john.new@acme.com and remove tag 'prospect'"
Key parameters:
partyId(required) -- Integer ID of the party to updateparty(required) -- Object with fields to update. Supports:- All creation fields (name, emails, phones, addresses, etc.)
_delete: trueon sub-items to remove them (requires the item'sid)- Tags: add by
{name}or remove with{id, _delete: true}
5. Track Tasks
List tasks with filtering by status and embedded related data.
Tool: CAPSULE_CRM_LIST_TASKS
Example prompt:
"Show all open tasks in Capsule CRM with their linked parties and owners"
Key parameters:
status-- Filter by status: "open", "completed", "pending" (array)embed-- Additional data: "party", "opportunity", "kase", "owner", "nextTask"page/perPage-- Pagination (max 100 per page, default 50)
6. Browse Projects and Activity Entries
List projects (cases) and recent activity entries including notes, emails, and completed tasks.
Tools: CAPSULE_CRM_LIST_PROJECTS, CAPSULE_CRM_LIST_ENTRIES_BY_DATE
Example prompt:
"Show all open projects in Capsule CRM" / "Show recent activity entries with party details"
Key parameters for projects:
status-- Filter by "OPEN" or "CLOSED"search-- Search term for project names/descriptionssince-- ISO8601 date for modifications after this dateembed-- "tags,fields,party,opportunity,missingImportantFields"
Key parameters for entries:
embed-- "party", "kase", "opportunity", "creator", "activityType"page/perPage-- Pagination (max 100 per page)
Known Pitfalls
- Address fields are top-level: When filtering, use
state,city,country,zipdirectly -- NOTaddress.stateor nested syntax. - Country codes are ISO alpha-2: Filter by "US", "GB", "CA" -- not "United States" or "United Kingdom".
- Custom fields use special syntax: Reference custom fields as
custom:{fieldId}in filter conditions. For org-level custom fields, useorg.custom:{fieldId}. - Projects are called "kases" in the API: Despite being "projects" in the UI, the API entity type is
kases. Usekasesin filter queries. - Delete operations require item IDs: When updating a party to remove sub-items (emails, phones, tags), you must include the item's
idalong with_delete: true. List the party first to get sub-item IDs. - Pagination defaults to 50: All list endpoints default to 50 items per page with a max of 100. Always implement pagination for complete data retrieval.
- Embed values vary by entity: Not all embed options work for all entities. Check the documentation for supported embed values per endpoint.
Quick Reference
| Action | Tool Slug | Required Params |
|---|---|---|
| Run filter query | CAPSULE_CRM_RUN_FILTER_QUERY | entity, filter |
| List contacts | CAPSULE_CRM_LIST_PARTIES | None (optional filters) |
| Create contact | CAPSULE_CRM_CREATE_PARTY | type |
| Update contact | CAPSULE_CRM_UPDATE_PARTY | partyId, party |
| Delete contact | CAPSULE_CRM_DELETE_PARTY | party_id |
| List tasks | CAPSULE_CRM_LIST_TASKS | None (optional filters) |
| List projects | CAPSULE_CRM_LIST_PROJECTS | None (optional filters) |
| List activity entries | CAPSULE_CRM_LIST_ENTRIES_BY_DATE | None (optional filters) |
| List org employees | CAPSULE_CRM_LIST_ORG_EMPLOYEES | Organisation ID |
| List deleted opportunities | CAPSULE_CRM_LIST_DELETED_OPPORTUNITIES | since |
Powered by Composio
Source
git clone https://github.com/ComposioHQ/awesome-claude-skills/blob/master/composio-skills/capsule-crm-automation/SKILL.mdView on GitHub Overview
Capsule CRM Automation lets you manage contacts, organizations, and activities in Capsule CRM using natural language via the Composio MCP integration. It covers creating and updating records, running structured filter queries on parties, opportunities, and cases, and tracking tasks and projects, all through conversational prompts. This streamlines CRM workflows by turning intents into precise API calls.
How This Skill Works
You issue natural language commands that map to Capsule CRM tools such as CAPSULE_CRM_RUN_FILTER_QUERY, CAPSULE_CRM_LIST_PARTIES, and CAPSULE_CRM_CREATE_PARTY. The system translates your prompts into structured queries with fields, operators, and sort orders, returning results with optional embedded data. It relies on the MCP integration to authenticate and execute actions against Capsule CRM.
When to Use It
- Need to find contacts, opportunities, or cases with multiple filters and sort orders
- Want to list contacts with related data like tags and organizations
- Need to create a new person or organization with emails, phones, addresses, tags, and custom fields
- Need to update existing contact details or add/remove fields and relations
- Want to track tasks, projects, browse activity entries, and map team relationships via natural language
Quick Start
- Step 1: Add the Composio MCP server to your client at https://rube.app/mcp
- Step 2: Connect your Capsule CRM account via OAuth when prompted
- Step 3: Start issuing natural language commands to manage your CRM
Best Practices
- Use precise field names and documented operators (e.g., country as ISO code, address fields top-level)
- When querying, specify embed options to fetch necessary related data in one response
- Keep pagination within limits (page and perPage, max 100 per page)
- Use ISO 3166-1 alpha-2 codes for countries and prefix organization fields with org. when needed
- Reference the exact tool names ( CAPSULE_CRM_RUN_FILTER_QUERY, CAPSULE_CRM_LIST_PARTIES, CAPSULE_CRM_CREATE_PARTY ) in prompts
Example Use Cases
- Find all Capsule CRM contacts in CA tagged as VIP, sorted by name
- List all parties modified since 2025-01-01 with their tags and organizations
- Create a new person: Jane Doe, VP of Sales at Acme Corp, jane@acme.com, with phone 555-1234 and office address, tags client and partner
- Update John Smith's record to add a new email and append the tag Important
- Show all projects for a client where status is active and due date is upcoming
Frequently Asked Questions
Related Skills
close-automation
davepoon/buildwithclaude
Automate Close CRM tasks via Rube MCP (Composio): create leads, manage calls/SMS, handle tasks, and track notes. Always search tools first for current schemas.
Attio Automation
ComposioHQ/awesome-claude-skills
Automate Attio CRM operations -- search records, query contacts and companies with advanced filters, manage notes, list attributes, and navigate your relationship data -- using natural language through the Composio MCP integration.
hubspot-automation
davepoon/buildwithclaude
Automate HubSpot CRM operations (contacts, companies, deals, tickets, properties) via Rube MCP using Composio integration.
pipedrive-automation
davepoon/buildwithclaude
Automate Pipedrive CRM operations including deals, contacts, organizations, activities, notes, and pipeline management via Rube MCP (Composio). Always search tools first for current schemas.
zoho-crm-automation
davepoon/buildwithclaude
Automate Zoho CRM tasks via Rube MCP (Composio): create/update records, search contacts, manage leads, and convert leads. Always search tools first for current schemas.
salesforce-automation
davepoon/buildwithclaude
Automate Salesforce tasks via Rube MCP (Composio): leads, contacts, accounts, opportunities, SOQL queries. Always search tools first for current schemas.