Skip to main content
Glama
by jekakos
smithery-config.json1.54 kB
{ "name": "user-data-enrichment", "description": "MCP server for enriching user data with social network links", "version": "1.0.0", "mcpServers": { "user-data-enrichment": { "command": "node", "args": ["src/mcp-server.js"], "env": {}, "description": "Enriches user data by adding social media links" } }, "tools": [ { "name": "enrich_user_data", "description": "Enriches user data by adding social network links", "inputSchema": { "type": "object", "properties": { "firstName": { "type": "string", "description": "User first name" }, "lastName": { "type": "string", "description": "User last name" }, "birthDate": { "type": "string", "description": "Birth date in YYYY-MM-DD format" } }, "required": ["firstName", "lastName", "birthDate"] } } ], "examples": [ { "name": "Enrich John Smith", "input": { "firstName": "John", "lastName": "Smith", "birthDate": "1990-01-01" }, "expectedOutput": { "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" } } } ] }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jekakos/mcp-user-data-enrichment'

If you have feedback or need assistance with the MCP directory API, please join our Discord server