streamable-httpupdated 11mo ago
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.
Was kannst du mit jekakos mcp user data enrichment machen?
MCP User Data Enrichment Server
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.
Features
- User Data Enrichment: Takes user information (name, birth date) and returns social media links
- Mock Data Support: Includes pre-configured social links for demonstration
- Dynamic Generation: Automatically generates social links for new users
- MCP Protocol: Standard MCP implementation via stdio
- HTTP Wrapper: Optional HTTP API for remote access
- Smithery Integration: Ready for integration with Smithery.ai
Installation
npm install mcp-user-data-enrichment
Usage
As MCP Server (Recommended for Smithery)
# Direct stdio usage
node src/mcp-server.js
# Or via npm script
npm run mcp
As HTTP Server
# Start HTTP server on port 3000
npm start
API Endpoints
HTTP API (when running as server)
GET /status- Server statusGET /tools- List available toolsPOST /tools/call- Call any toolPOST /enrich-user- Enrich user data
MCP Protocol
The 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"
}
}
Smithery.ai Integration
This MCP server is designed to work with Smithery.ai, a platform for AI agent orchestration.
Setup in Smithery
- Deploy your server to a public repository on GitHub
- Configure MCP connection in Smithery:
{ "mcpServers": { "user-data-enrichment": { "command": "node", "args": ["path/to/mcp-server.js"] } } } - Use the tool in your AI agent workflows
Example Smithery Usage
// 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);
Development
# 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
Testing
# 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"}'
Mock Data
The server includes mock social links for these users:
- John Smith
- Sarah Johnson
- Michael Brown
For other users, links are generated automatically based on the name.
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
License
MIT License - see LICENSE file for details
Deployment Files
Dockerfile- Docker configuration for containerized deploymentsmithery.yaml- Smithery.ai configuration file.dockerignore- Docker ignore file for optimized builds
Related Links
- Model Context Protocol
- Smithery.ai - AI Agent Orchestration Platform
- MCP Inspector - MCP Testing Tool
Installation
jekakos mcp user data enrichment zu deinem Client hinzufügen. Wähl den, den du nutzt.
claude mcp add --transport http jekakos-mcp-user-data-enrichment https://server.smithery.ai/@jekakos/mcp-user-data-enrichment/mcpcodex mcp add jekakos-mcp-user-data-enrichment --url https://server.smithery.ai/@jekakos/mcp-user-data-enrichment/mcp{
"mcpServers": {
"jekakos-mcp-user-data-enrichment": {
"url": "https://server.smithery.ai/@jekakos/mcp-user-data-enrichment/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"jekakos-mcp-user-data-enrichment": {
"type": "http",
"url": "https://server.smithery.ai/@jekakos/mcp-user-data-enrichment/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"jekakos-mcp-user-data-enrichment": {
"url": "https://server.smithery.ai/@jekakos/mcp-user-data-enrichment/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"jekakos-mcp-user-data-enrichment": {
"serverUrl": "https://server.smithery.ai/@jekakos/mcp-user-data-enrichment/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Unvollständig
- Dokumentation18/25
- Pflege9/25
- Vertrauen6/20
- Funktionsumfang0/15
- Installation12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 333 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Versionsverlauf
| Versionen | Veröffentlicht |
|---|---|
| 1.0.0Aktuell | 2. Okt. 2025 |