Company Identity Resolver
v1.0.1$0.007/resultEnrichment
Resolves any combination of company name, domain, or LinkedIn URL into one canonical company identity tuple (name, primary domain, LinkedIn URL) with 0-100 confidence scores, conflict detection, and a match method. Flat, Clay-ready, pay-per-event.
Install
bash
npx @mambalabsdev/mcp-company-identity-resolverUse Cases
- Data normalization. Reconcile messy company data (mixed names, domains, LinkedIn slugs) into a single canonical identity per company.
- Deduplication. Run before CRM import to merge records that refer to the same company under different names or domains.
Features
- A canonical name, domain and LinkedIn URL
- Per-field and overall confidence, 0 to 100
- Conflict detection, never a silent merge
- 13 flat fields, snake_case, one row per entity
- Any input, any direction, name, domain or slug
Input
company_namestringoptionalThe company name, however you have it written.
domainstringoptionalBare domain. Validated by DNS when supplied.
linkedin_urlstringoptionalA LinkedIn company URL or slug.
skipCachestringoptional"true" forces a fresh resolution. Default: "false".
Output schema
json
{
"input_company_name": "Stripe",
"input_domain": null,
"input_linkedin": null,
"name": "Stripe",
"domain": "stripe.com",
"linkedin_url": "https://www.linkedin.com/company/stripe",
"confidence_score": 96,
"match_method": "search_then_jsonld",
"domain_confidence": 95,
"linkedin_confidence": 98,
"name_confidence": 96,
"resolved": true,
"run_date": "2026-06-21T09:36:04Z"
}Pricing
$0.007per result
Pay-per-event billing on the Apify platform. You are charged only when the actor returns a result. No subscription, no seat license.
Free-tier Apify accounts include monthly free compute. Upgrade for higher concurrency and volume.