npx claudepluginhub anthropics/claude-plugins-official --plugin zoominfoWant just this skill?
Then install: npx claudepluginhub u/[userId]/[slug]
Look up a person's full professional profile. Provide a name and company, email address, phone number, or ZoomInfo person ID. Returns title, department, contact details, accuracy score, and company info.
This skill uses the workspace's default tool permissions.
Enrich Contact
Look up a single contact's full profile in ZoomInfo.
Input
The user will provide via $ARGUMENTS one of:
- An email address (e.g.,
jane@acme.com) - A name and company (e.g.,
Jane Smith at Acme Corp) - A phone number
- A LinkedIn URL
- A ZoomInfo person ID
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, especially if a fallback search is needed. -
Identify the best match key from the user's input:
- Email → use
emailparameter - Name + company → use
firstName,lastName,companyName - Full name + company → use
fullName,companyName - Phone → use
phone - LinkedIn URL → use
externalURL - Person ID → use
personId
- Email → use
-
Enrich the contact using
enrich_contactswith the identified parameters. -
If no match, try a fallback:
- If name + company failed, try
search_contactswithjobTitleorcompanyNamevariations — use lookupidvalues for any filters - Suggest alternative spellings or company names
- If name + company failed, try
Output Format
[Full Name] — [Title] at [Company]
| Field | Value |
|---|---|
| Department | |
| Management Level | |
| Direct Phone | |
| Mobile Phone | |
| Accuracy Score | |
| Location | |
| Company | |
| Company Industry | |
| Company Size | |
| Last Updated | |
| ZoomInfo Person ID |
If any fields are unavailable, omit them rather than showing blanks. Note the accuracy score prominently — anything below 80 deserves a flag.
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.