Multi-source entity enrichment: company data, contacts, email verification, and phone validation
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-intelagentstudios-mcp-enrichment": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Open-source Model Context Protocol servers by Intelagent. Each server is a standalone npm package usable with Claude Code, Claude Desktop, Cursor, and any MCP-compatible client.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in communication / marketing
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
DataForSEO API modelcontextprotocol server
An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages.
MCP server for Kaseya Autotask PSA — 39 tools for companies, tickets, projects, time entries, and more
MCP Security Weekly
Get CVE alerts and security updates for io.github.IntelagentStudios/mcp-enrichment and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Open-source Model Context Protocol servers by Intelagent. Each server is a standalone npm package usable with Claude Code, Claude Desktop, Cursor, and any MCP-compatible client.
| Package | Description | Status |
|---|---|---|
@intelagent/mcp-enrichment | Company, contact, email & phone enrichment via Clearbit, Hunter.io, Twilio | Available |
@intelagent/mcp-file-processor | Document text extraction, keyword detection, chunking | Available |
@intelagent/mcp-web-research | Web search, page fetch, research synthesis | Planned |
@intelagent/mcp-approval-queue | Human-in-the-loop approval workflows | Planned |
@intelagent/mcp-knowledge-grid | Document indexing, semantic search, context composition | Planned |
# Clone and install
git clone https://github.com/IntelagentStudios/Intelagent-MCPs.git
cd Intelagent-MCPs
npm install
npm run build
# Run the enrichment server (mock mode — no API keys needed)
node packages/enrichment/dist/index.js
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": "..."
}
}
}
}
All servers work in mock mode when API keys are omitted — great for development and testing.
npm install # Install all dependencies
npm run build # Build all packages
npm test # Run all tests
packages/<server-name>/ with package.json, tsconfig.json, and src/@intelagent/mcp-shared for the server bootstrap (createMCPServer)tools.ts, wire up in index.ts__tests__/See packages/enrichment as a reference implementation.
@intelagent/mcp-shared provides:
createMCPServer() — Reusable MCP server bootstrap with tool/resource registration and stdio transportMIT