Enrich user data by adding social network links based on provided personal information. Integrate…
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"ai-smithery-jekakos-mcp-user-data-enrichment": {
"args": [
"-y",
"mcp-user-data-enrichment"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that enriches user data by adding social network links. This server can be integrated with AI platforms like Smithery.ai to provide social media link discovery capabilities.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'mcp-user-data-enrichment' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-user-data-enrichment against OSV.dev.
Click any tool to inspect its schema.
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 other
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 60-95% fewer tokens, same answers. Library, proxy, MCP server.
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
Autonomous spec-to-product coding-agent CLI with an MCP server exposing 34 tools over stdio.
MCP Security Weekly
Get CVE alerts and security updates for ai.smithery/jekakos-mcp-user-data-enrichment and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that enriches user data by adding social network links. This server can be integrated with AI platforms like Smithery.ai to provide social media link discovery capabilities.
npm install mcp-user-data-enrichment
# Direct stdio usage
node src/mcp-server.js
# Or via npm script
npm run mcp
# Start HTTP server on port 3000
npm start
GET /status - Server statusGET /tools - List available toolsPOST /tools/call - Call any toolPOST /enrich-user - Enrich user dataThe server provides one tool: enrich_user_data
Input Schema:
{
"firstName": "string",
"lastName": "string",
"birthDate": "string (YYYY-MM-DD)"
}
Output:
{
"user": {
"firstName": "John",
"lastName": "Smith",
"birthDate": "1990-01-01"
},
"socialLinks": {
"instagram": "https://instagram.com/john_smith",
"facebook": "https://facebook.com/john.smith",
"twitter": "https://twitter.com/john_smith",
"linkedin": "https://linkedin.com/in/john_smith"
}
}
This MCP server is designed to work with Smithery.ai, a platform for AI agent orchestration.
{
"mcpServers": {
"user-data-enrichment": {
"command": "node",
"args": ["path/to/mcp-server.js"]
}
}
}
// In your Smithery agent
const result = await mcp.callTool('enrich_user_data', {
firstName: 'John',
lastName: 'Smith',
birthDate: '1990-01-01'
});
console.log(result.content[0].text);
# Install dependencies
npm install
# Run in development mode
npm run dev
# Test MCP server directly
echo '{"jsonrpc": "2.0", "id": 1, "method": "tools/list"}' | node src/mcp-server.js
# Run test client
node test-client.js
# Test with curl
curl -X POST http://localhost:3000/enrich-user \
-H "Content-Type: application/json" \
-d '{"firstName": "John", "lastName": "Smith", "birthDate": "1990-01-01"}'
The server includes mock social links for these users:
For other users, links are generated automatically based on the name.
MIT License - see LICENSE file for details
Dockerfile - Docker configuration for containerized deploymentsmithery.yaml - Smithery.ai configuration file.dockerignore - Docker ignore file for optimized builds