Back to Browse

Intelagent MCPs MCP Server

Developer ToolsLow Risk9.7MCP RegistryLocal
Free

Server data from the Official MCP Registry

Multi-source entity enrichment: company data, contacts, email verification, and phone validation

About

Multi-source entity enrichment: company data, contacts, email verification, and phone validation

Security Report

9.7
Low Risk9.7Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. ⚠️ Package registry links to a different repository than scanned source. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.

19 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

Shell Command Execution

Runs commands on your machine. Be cautious — only use if you trust this plugin.

What You'll Need

Set these up before or after installing:

Clearbit API key for company and contact enrichmentRequired

Environment variable: CLEARBIT_API_KEY

Hunter.io API key for email discovery and verificationRequired

Environment variable: HUNTER_API_KEY

Apollo.io API key for contact and company dataRequired

Environment variable: APOLLO_API_KEY

Twilio Account SID for phone validationRequired

Environment variable: TWILIO_ACCOUNT_SID

Twilio Auth Token for phone validationRequired

Environment variable: TWILIO_AUTH_TOKEN

Cache TTL in seconds for enrichment results (default: 86400)Optional

Environment variable: ENRICHMENT_CACHE_TTL

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-intelagentstudios-mcp-enrichment": {
      "env": {
        "APOLLO_API_KEY": "your-apollo-api-key-here",
        "HUNTER_API_KEY": "your-hunter-api-key-here",
        "CLEARBIT_API_KEY": "your-clearbit-api-key-here",
        "TWILIO_AUTH_TOKEN": "your-twilio-auth-token-here",
        "TWILIO_ACCOUNT_SID": "your-twilio-account-sid-here",
        "ENRICHMENT_CACHE_TTL": "your-enrichment-cache-ttl-here"
      },
      "args": [
        "-y",
        "@intelagent/mcp-servers"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Opafex MCPs

Open-source Model Context Protocol servers by Opafex. Each server is a standalone npm package usable with Claude Code, Claude Desktop, Cursor, and any MCP-compatible client.

Servers

PackageDescriptionStatus
@opafex/mcp-enrichmentCompany, contact, email & phone enrichment via Clearbit, Hunter.io, TwilioAvailable
@opafex/mcp-file-processorDocument text extraction, keyword detection, chunkingAvailable
@opafex/mcp-web-researchWeb search, page fetch, research synthesisPlanned
@opafex/mcp-approval-queueHuman-in-the-loop approval workflowsPlanned
@opafex/mcp-knowledge-gridDocument indexing, semantic search, context compositionPlanned

Quick Start

# Clone and install
git clone https://github.com/opafex/opafex-mcps.git
cd opafex-mcps
npm install
npm run build

# Run the enrichment server (mock mode — no API keys needed)
node packages/enrichment/dist/index.js

Add to Claude Code

Create or edit .mcp.json in your project root:

{
  "mcpServers": {
    "enrichment": {
      "command": "node",
      "args": ["/path/to/opafex-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.

Development

npm install          # Install all dependencies
npm run build        # Build all packages
npm test             # Run all tests

Adding a New Server

  1. Create packages/<server-name>/ with package.json, tsconfig.json, and src/
  2. Use @opafex/mcp-shared for the server bootstrap (createMCPServer)
  3. Define tools in tools.ts, wire up in index.ts
  4. Add tests in __tests__/

See packages/enrichment as a reference implementation.

Shared Utilities

@opafex/mcp-shared provides:

  • createMCPServer() — Reusable MCP server bootstrap with tool/resource registration and stdio transport
  • Validation helpers — Email, domain, phone format validation

License

MIT

Reviews

No reviews yet

Be the first to review this server!