You'd write 12 tool adapters. Each one with rate limits, error handling, cost tracking, and retries. About 200 lines per tool. We did it once. Your agent gets all 12 from one npx command.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"agentenrich": {
"command": "npx",
"args": ["-y", "@agentenrich/mcp"],
"env": { "AGENTENRICH_API_KEY": "ae_live_..." }
}
}
}
Add to your MCP settings. same format:
{
"agentenrich": {
"command": "npx",
"args": ["-y", "@agentenrich/mcp"],
"env": { "AGENTENRICH_API_KEY": "ae_live_..." }
}
}
Run it directly. Talks stdio JSON-RPC.
export AGENTENRICH_API_KEY=ae_live_... npx @agentenrich/mcp
One-click install from smithery.ai/server/agentenrich. most popular MCP catalog.
Listed on Anthropic's connector registry, mcp.so, and Glama.
| Tool | Description (for LLMs) |
|---|---|
| enrich_person | Resolve a person to a full record from LinkedIn URL, email, phone, or name+company. |
| enrich_company | Resolve a company to a full record from domain, LinkedIn URL, or name. |
| find_email | Get an SMTP-verified email address for a person. |
| find_phone | Get a mobile phone for a person (premium. 12 credits). |
| find_decision_maker | Find the top-ranked decision maker matching a role at a company. |
| buying_committee | Get the decision/influencer/user map for a deal type at a company. |
| prospect_package | Get person + email + phone + peers + personalization hooks in one call. |
| congrats_trigger | Get recent job changes with the actual LinkedIn announcement post. |
| job_change_radar | Stream of real-time unmasked job changes. |
| funding_radar | Recent funded companies + the right decision maker at each. |
| sales_deck_bundle | Complete sales-prep brief: company + DM + committee + funding + lookalikes. |
| recruiter_pack_bundle | Candidate + similar candidates at other companies + contact info. |
Every tool description is written so an LLM can choose between them. No "API documentation prose."
Each tool description includes its credit cost. Your agent can budget without an extra call.
The MCP wrapper auto-generates idempotency keys per tool call. Retry-safe out of the box.
Your agent's tool list now includes AgentEnrich. Swapping to a competitor means reconfiguring the agent. real switching cost.