enrich-contact

enrich-contact is a skill for Claude Code from lusha-oss/lusha-mcp-plugin. It costs 80 tokens per session (1,122 once invoked), scanned A, original, MIT.

A contact lookup tool that finds one person’s verified phone numbers, email address, and company details using their email, LinkedIn URL, or full name and company.

In plain words
What is it for?
Use it to find a person’s direct line, mobile number, email address, and company context, or to identify possible people from a job title and company before looking one up.
Why use it?
It removes the need to search across multiple sources for basic contact information. It also helps avoid unclear matches by requiring identifying details.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the lusha-mcp-plugin plugin — 6 skills, 1 MCP server shipped together

Good fit Use it to find a person’s direct line, mobile number, email address, and company context, or to identify possible people from a job title and company before looking one up.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lusha-oss/lusha-mcp-plugin/enrich-contact
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add lusha-oss/lusha-mcp-plugin --skill enrich-contact
Clone the repo
git clone --depth 1 https://github.com/lusha-oss/lusha-mcp-plugin

Made for: Claude Code.

Or install lusha-mcp-plugin, the plugin that ships this one along with the rest of its 6 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for enrich-contact

README.md
[![agentmods](https://agentmods.dev/badge/skills/lusha-oss/lusha-mcp-plugin/enrich-contact/github.svg)](https://agentmods.dev/skills/lusha-oss/lusha-mcp-plugin/enrich-contact)
Your own site
<a href="https://agentmods.dev/skills/lusha-oss/lusha-mcp-plugin/enrich-contact"><img src="https://agentmods.dev/badge/skills/lusha-oss/lusha-mcp-plugin/enrich-contact/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for enrich-contact

Your own site · 80×15
<a href="https://agentmods.dev/skills/lusha-oss/lusha-mcp-plugin/enrich-contact"><img src="https://agentmods.dev/badge/skills/lusha-oss/lusha-mcp-plugin/enrich-contact.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,122 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00080 $0.01122
Opus 5 $0.00040 $0.00561
Sonnet 5 $0.00016 $0.00224
Haiku 4.5 $0.00008 $0.00112

Measured 11d ago against content hash 627f0f0e084d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

enrich-contact scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/enrich-contact/SKILL.md · 98 lines

How it starts

The opening of the file, as written. The whole thing — 98 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Enrich Contact

Look up a person in Lusha and return a call-ready contact card. Phone numbers — direct line and mobile — lead the output.

Step 1 — Parse Input

Extract all available identifiers from the user's request. contacts_search accepts three lookup paths:

  • Email — standalone, strongest match
  • LinkedIn URL — standalone, strong match
  • First name + last name + company name — all three required together

A job title alone is not a lookup path. If the user gives only a title + company (e.g. "the CFO of Stripe"), there is no name to look up — first surface candidates with prospecting_contact_search (jobTitles + company), then enrich the chosen one. Only ask for clarification when no usable identifier is present at all.

Step 2 — Look Up and Reveal

contacts_search has an enrich flag that controls whether the call reveals (and charges for) phones and email. Pick the path by how confident the match is — never do both for the same person, that reveals and charges twice.

One-shot (preferred when the identifier is unambiguous — an email, a LinkedIn URL, or a clean name + company): Call contacts_search with enrich: true (the default). The response returns the profile with verified phones and email in a single call. You're done — do not call prospecting_contact_enrich afterward.

Preview-then-reveal (when the match may be ambiguous — common name, no company, multiple likely people):

  1. Call contacts_search with enrich: false — this returns a preview only and consumes no reveal credits.
  2. If multiple candidates come back, present the top 2–3 and ask the user to confirm.
  3. Call prospecting_contact_enrich with the chosen result's id and reveal set from its canReveal[].field to reveal phones and email once.

Step 3 — Fetch Signals (optional)

If you resolved a Lusha contact id in Step 2, use signals_contacts_get with that id to check for recent signals (promotion, company change). If you only have an email or LinkedIn URL and no id, use signals_contacts_search instead. Signals default to the last 6 months. Include any returned signals in the output as context.

Read the full file on GitHub · 98 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 98 lines · 80 tokens per session scan A 627f0f0e084d

Subscribe to this mod's changes

enrich-contact is a skill published in the GitHub repository lusha-oss/lusha-mcp-plugin (4 stars, last pushed 1mo ago), licensed MIT. It adds 80 tokens to every session and 1,122 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.