Enrich company, person, and contact data with 25 tools via the Enrich Layer API. Look up companies, find decision-makers, get work emails, search employees,...
This skill connects to the Enrich Layer API via MCP, giving you 25 tools for enriching company, person, contact, school, and job data from professional networks.
Add the Enrich Layer MCP server to your OpenClaw MCP configuration:
{
"mcpServers": {
"enrich-layer": {
"command": "npx",
"args": ["-y", "@verticalint-michael/enrich-layer-mcp"],
"env": {
"ENRICH_LAYER_API_KEY": "${ENRICH_LAYER_API_KEY}"
}
}
}
}
Get your API key at enrichlayer.com/dashboard.
categories, funding_data, exit_data, acquisitions, extra.company_name or company_domain. Optionally pass company_location as an ISO 3166-1 alpha-2 country code to disambiguate. Cost: 2 credits.at_date. Cost: 1 credit.extra (1 credit), personal_contact_number (1 credit/number), personal_email (1 credit/email), skills (free).first_name and company_domain; optionally add last_name, title, location for precision. Cost: 2 credits.company_name and role (e.g., "ceo"). Cost: 3 credits.country (ISO 3166). Uses boolean search syntax. Cost: 3 credits per URL returned.When the user asks to enrich, look up, or find information about companies or people, follow these rules:
Before running bulk enrichment (employee lists, person searches, company searches), call enrich_credit_balance to check the user's remaining credits. Warn them about the estimated cost before proceeding with expensive operations.
_profile tool (1 credit) instead of a _lookup tool (2 credits).enrich_company_id_lookup (0 credits) when you have a numeric company ID.enrich_company_picture or enrich_person_picture (0 credits) when only the avatar is needed.enrich_disposable_email (0 credits) to validate emails before spending credits on enrichment.Many tasks require chaining two or more tools. Follow these common patterns:
enrich_role_lookup (get profile URL) then enrich_work_email (get email). Total: 6 credits.enrich_person_lookup (get profile URL) then enrich_work_email (get email). Total: 5 credits.enrich_company_lookup (get URL) then enrich_company_profile (get full data). Total: 3 credits. Or pass enrich_profile: "enrich" to get both in one call for 3 credits.enrich_company_lookup (get URL) then enrich_employee_list with boolean_role_search set to the target roles.enrich_disposable_email (free check) then enrich_reverse_email (find the profile).enrich_profile / enrich_profiles shortcutSeveral lookup and list tools accept an enrich_profile or enrich_profiles parameter set to "enrich". This returns full profile data inline, saving a separate profile call. Use it when you need full details and not just the URL.
Employee search, company search, and person search support boolean operators in many fields:
OR / || — match either term: "founder OR co-founder"AND — match both terms: "engineer AND manager"NOT — exclude: "director NOT assistant""'Vice President'"All profile tools accept use_cache:
"if-present" — use cached data regardless of age (fastest, cheapest)."if-recent" — only use cache if the profile is less than 29 days old.Default to "if-present" unless the user explicitly needs fresh data.
enrich_employee_list, enrich_student_list, and search tools accept page_size. When enriching profiles inline (enrich_profiles: "enrich"), the max page size drops to 10. Plan accordingly for large lists.
Several tools accept country/location filters. Always use ISO 3166-1 alpha-2 codes (e.g., us, gb, de, sg). For person search, the country parameter is required.
User: "I have a list of company names. Enrich them all."
enrich_credit_balance to check available credits.enrich_company_lookup with enrich_profile: "enrich" to get the URL and full profile in one call (3 credits each).User: "Find the CTO and VP Engineering at Stripe."
enrich_role_lookup with company_name: "Stripe", role: "cto" (3 credits).enrich_role_lookup with company_name: "Stripe", role: "vp engineering" (3 credits).enrich_work_email to get their email (3 credits each).User: "What can you tell me about john@acme.com?"
enrich_disposable_email with the email (0 credits) to verify it is not throwaway.enrich_reverse_email with email: "john@acme.com" (3 credits) to get their profile URL.enrich_person_profile with the returned URL (1 credit) to get full details.User: "Find SaaS startups in the US with 50-200 employees founded after 2018."
enrich_company_search with country: "US", industry: "software", employee_count_min: "50", employee_count_max: "200", founded_after_year: "2018", type: "PRIVATELY_HELD" (3 credits per result).User: "List recent computer science graduates from MIT."
enrich_student_list with the MIT professional network URL, boolean_search_keyword: "computer science", student_status: "past", sort_by: "recently-graduated" (3 credits per student).ZIP package — ready to use