smithery-config.json•1.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"
}
}
}
]
}