npx claudepluginhub anthropics/claude-plugins-official --plugin zoominfoWant just this skill?
Then install: npx claudepluginhub u/[userId]/[slug]
Get AI-powered contact recommendations at a target company based on your ZoomInfo interaction history. Provide a company name or domain and optionally a use case.
This skill uses the workspace's default tool permissions.
Recommended Contacts
Get ML-ranked contact recommendations at a target company, personalized to your ZoomInfo usage and CRM data.
Input
The user will provide via $ARGUMENTS:
- A company name, domain, or ZoomInfo company ID (required)
- Optionally: a use case — "prospecting", "deal acceleration", or "renewal" (defaults to PROSPECTING)
- Optionally: how many results they want (defaults to 25, max 100)
Workflow
-
Lookup metadata first — before calling any other MCP tool, use
lookupto load reference data for any fields relevant to the request. Use the returnedidvalues (not display names) in all subsequent API calls. This ensures accurate parameter resolution and result interpretation. -
Resolve the company if the user provided a name or domain:
- Use
search_companieswithcompanyNameorcompanyWebsiteto find the company — use lookupidvalues for any filters. - Extract the ZoomInfo company ID from the result.
- Use
-
Enrich the company using
enrich_companieswith the resolvedcompanyIdto get firmographic context (industry, size, revenue, business model). This context is used to interpret the recommendations. -
Map the use case to the correct enum value:
- "prospecting" or default →
PROSPECTING(based on contacts you've viewed, copied, or exported on the ZoomInfo platform; has cold-start support) - "deal acceleration" or "new business" →
DEAL_ACCELERATION(based on contacts in closed-won CRM opportunities for new business) - "renewal", "growth", or "expansion" →
RENEWAL_AND_GROWTH(based on contacts in closed-won CRM opportunities for renewals)
- "prospecting" or default →
-
Get recommendations using
get_recommended_contactswith:ziCompanyId: the resolved ZoomInfo company IDuseCaseType: the mapped enum valuepageSize: user-specified count or 25
-
Enrich the top contacts using
enrich_contactson the top 10 results (batch of 10) to get full contact details including email, direct phone, and accuracy scores.
Output Format
Target Company
One-line summary: [Company Name] — [Industry], [Employee Count] employees, [Revenue], [HQ Location]
Use Case
State which use case was used and what it means:
- PROSPECTING: "Recommendations based on contacts similar to those you've recently viewed, copied, or exported in ZoomInfo."
- DEAL_ACCELERATION: "Recommendations based on contact patterns from your CRM's closed-won new business deals."
- RENEWAL_AND_GROWTH: "Recommendations based on contact patterns from your CRM's closed-won renewal deals."
Recommended Contacts
| Rank | Name | Title | Department | Management Level | Direct Phone | Accuracy | Score | |
|---|---|---|---|---|---|---|---|---|
| 1 | ||||||||
| 2 |
For each contact, use the meta field from the recommendation response to explain WHY they were recommended. The meta describes the reference person the recommendation was based on. Present this as a "Why Recommended" note below the table or as an additional column.
Recommendation Analysis
Group the recommended contacts by pattern:
- By Department: Which departments are most represented? (e.g., "8 of 25 are in Sales, 6 in Marketing")
- By Seniority: What management levels dominate? (e.g., "Heavily weighted toward Director and VP")
- By Function: What job functions appear most? (e.g., "Strong signal toward revenue-facing roles")
Use the resolved lookup values to categorize accurately — do not guess department or management level labels.
Engagement Priority
Rank the top 5 contacts to engage first, with reasoning:
- Who has the highest combined relevance (recommendation score) and reachability (accuracy score)?
- Who is the likely entry point vs. the likely decision-maker?
- Suggested outreach sequence
Next Steps
- Use
/zoominfo:enrich-contactto deep-dive on any specific person - Use
/zoominfo:find-buyersif you need to filter by specific persona criteria beyond what recommendations provide - If recommendations are sparse, note that PROSPECTING recommendations improve as you use ZoomInfo more (view, copy, export contacts). DEAL_ACCELERATION and RENEWAL_AND_GROWTH require CRM integration.
Important Notes on Scores
- The
score(general similarity) andreRankingScore(propensity-adjusted) are not directly comparable to each other - Higher scores indicate stronger fit but do not guarantee response rates
- Recommendations refresh daily based on your latest platform and CRM activity
Similar Skills
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.