mcp enrichment for VS Code
io.github.intelagentstudios/mcp-enrichment
Multi-source entity enrichment: company data, contacts, email verification, and phone validation
client:VS Code
transport:stdio
runtime:npm
Install mcp enrichment in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "clearbit-api-key",
"description": "CLEARBIT_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "hunter-api-key",
"description": "HUNTER_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "apollo-api-key",
"description": "APOLLO_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "twilio-account-sid",
"description": "TWILIO_ACCOUNT_SID",
"password": true
},
{
"type": "promptString",
"id": "twilio-auth-token",
"description": "TWILIO_AUTH_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "enrichment-cache-ttl",
"description": "ENRICHMENT_CACHE_TTL",
"password": true
}
],
"servers": {
"mcp-enrichment": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@intelagent/mcp-enrichment"
],
"env": {
"CLEARBIT_API_KEY": "${input:clearbit-api-key}",
"HUNTER_API_KEY": "${input:hunter-api-key}",
"APOLLO_API_KEY": "${input:apollo-api-key}",
"TWILIO_ACCOUNT_SID": "${input:twilio-account-sid}",
"TWILIO_AUTH_TOKEN": "${input:twilio-auth-token}",
"ENRICHMENT_CACHE_TTL": "${input:enrichment-cache-ttl}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs