
Company News
AWS Security Hub Adds Socket for Supply Chain Security
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.
@intelagent/mcp-enrichment
Advanced tools
MCP server for multi-source entity enrichment (company, contact, email, phone)
MCP server for multi-source entity enrichment — company data, contact lookup, email verification, phone validation, and email discovery.
Uses Clearbit, Hunter.io, and Twilio APIs. Works in mock mode with no API keys configured.
# Clone and build from source
git clone https://github.com/IntelagentStudios/Intelagent-MCPs.git
cd Intelagent-MCPs
npm install && npm run build
Requires Node.js 20+.
Create or edit .mcp.json in your project root:
{
"mcpServers": {
"enrichment": {
"command": "node",
"args": ["/path/to/Intelagent-MCPs/packages/enrichment/dist/index.js"],
"env": {
"CLEARBIT_API_KEY": "sk-...",
"HUNTER_API_KEY": "...",
"TWILIO_ACCOUNT_SID": "...",
"TWILIO_AUTH_TOKEN": "..."
}
}
}
}
Omit the env block to run in mock mode.
enrich_companyEnrich company data from a domain name or company name. Returns industry, employee count, funding, tech stack, social profiles, and more.
| Parameter | Type | Required | Description |
|---|---|---|---|
domain | string | One of domain or companyName | Company website domain (e.g. "stripe.com") |
companyName | string | One of domain or companyName | Company name |
Provider: Clearbit
{
"success": true,
"company": {
"name": "Company for stripe.com",
"domain": "stripe.com",
"description": "A leading technology company specializing in innovative solutions.",
"industry": "Technology",
"sector": "Software",
"employees": 150,
"employeesRange": "101-250",
"founded": 2015,
"location": { "city": "London", "country": "United Kingdom" },
"socialProfiles": { "linkedin": "https://linkedin.com/company/example" },
"techStack": ["React", "Node.js", "PostgreSQL", "AWS"],
"type": "private"
},
"provider": "mock",
"cached": false,
"timestamp": "2026-03-15T00:00:00.000Z"
}
enrich_contactEnrich contact/person data from an email address or LinkedIn URL.
| Parameter | Type | Required | Description |
|---|---|---|---|
email | string | One of email or linkedinUrl | Email address |
linkedinUrl | string | One of email or linkedinUrl | LinkedIn profile URL |
firstName | string | No | First name (optional hint) |
lastName | string | No | Last name (optional hint) |
company | string | No | Company name (optional hint) |
domain | string | No | Company domain (optional hint) |
Provider: Clearbit
verify_emailVerify an email address for deliverability. Returns validity, deliverability score, disposable/free provider detection, role-based detection, and SMTP validation.
| Parameter | Type | Required | Description |
|---|---|---|---|
email | string | Yes | Email address to verify |
Provider: Hunter.io
{
"success": true,
"email": "test@example.com",
"valid": true,
"deliverable": true,
"disposable": false,
"freeProvider": false,
"role": false,
"score": 95,
"provider": "mock",
"cached": false
}
verify_phoneValidate and look up a phone number. Returns validity, formatted number, line type (mobile/landline/voip), carrier info, and location.
| Parameter | Type | Required | Description |
|---|---|---|---|
phone | string | Yes | Phone number (any format, E.164 preferred) |
countryCode | string | No | Country dialing code without + (e.g. "1" for US, "44" for UK). Defaults to "44" (UK). |
Provider: Twilio
find_emailFind the email address for a specific person at a company.
| Parameter | Type | Required | Description |
|---|---|---|---|
firstName | string | Yes | Person's first name |
lastName | string | Yes | Person's last name |
domain | string | Yes | Company domain (e.g. "stripe.com") |
Provider: Hunter.io
{
"success": true,
"email": "jane.smith@stripe.com",
"score": 85,
"sources": ["LinkedIn", "Company Website"],
"provider": "mock",
"cached": false
}
server_info (built-in)Returns server metadata: name, version, registered tools, and resources. Added automatically by @intelagent/mcp-shared.
| Resource | Description |
|---|---|
enrichment://status | Provider configuration status (which APIs are active, mock mode) |
When no API keys are configured, all tools return realistic mock data. This is great for development and testing — you can build against the MCP without any API accounts.
Mock mode activates automatically:
CLEARBIT_API_KEY, HUNTER_API_KEY, or TWILIO_ACCOUNT_SID are setCLEARBIT_API_KEY, company/contact tools use real data while email/phone tools fall back to mock)Check enrichment://status resource or the server_info tool to see which providers are active.
| Variable | Type | Default | Description |
|---|---|---|---|
CLEARBIT_API_KEY | string | — | Clearbit API key for enrich_company, enrich_contact |
HUNTER_API_KEY | string | — | Hunter.io API key for verify_email, find_email |
TWILIO_ACCOUNT_SID | string | — | Twilio Account SID for verify_phone |
TWILIO_AUTH_TOKEN | string | — | Twilio Auth Token for verify_phone |
APOLLO_API_KEY | string | — | Apollo.io API key (reserved for future use) |
ENRICHMENT_CACHE_TTL | number (seconds) | 86400 (24h) | How long to cache enrichment results |
npm run build # Compile TypeScript
npm run dev # Run with tsx (no build needed)
npm test # Run tests
npm start # Run compiled server
The enrichment service can be used programmatically (not just as an MCP server):
import { EnrichmentService } from '@intelagent/mcp-enrichment/service';
import type { CacheProvider } from '@intelagent/mcp-enrichment/service';
const service = new EnrichmentService({
clearbitApiKey: 'sk-...',
hunterApiKey: '...',
});
const result = await service.enrichCompany({ domain: 'stripe.com' });
The default in-memory cache works out of the box. For Redis, SQLite, or any custom store, implement the CacheProvider interface:
import { EnrichmentService } from '@intelagent/mcp-enrichment/service';
import type { CacheProvider } from '@intelagent/mcp-enrichment/service';
const redisCache: CacheProvider = {
async get(key) { /* ... */ },
async set(key, data, ttlMs) { /* ... */ },
async delete(key) { /* ... */ },
async clear() { /* ... */ },
};
const service = new EnrichmentService({
clearbitApiKey: '...',
cache: redisCache,
});
Found a bug or have a feature request? Open an issue.
Pull requests welcome — see the main repo for development setup.
MIT — see LICENSE.
FAQs
MCP server for multi-source entity enrichment (company, contact, email, phone)
The npm package @intelagent/mcp-enrichment receives a total of 33 weekly downloads. As such, @intelagent/mcp-enrichment popularity was classified as not popular.
We found that @intelagent/mcp-enrichment demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.

Research
/Security News
Popular npm packages keyv and cacheable compromised.

Security News
A misconfiguration gave three Anthropic models internet access, and one, believing it was in a simulation, shipped a credential-stealing package to PyPI.