Predict the likely gender associated with a first name — with optional country-specific calibration via genderize.io
Predict the statistical gender distribution of a first name based on a database of millions of records. Optionally calibrate predictions by country, since names like "Andrea" skew differently in Italy vs. the US.
predict_gender — Gender prediction from a first name. Returns the predicted gender and probability (0-1).predict_gender_country — Same prediction with country-specific calibration using ISO 3166-1 alpha-2 codes.curl -s -X POST https://gateway.pipeworx.io/genderize/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"predict_gender_country","arguments":{"name":"Andrea","country_id":"IT"}}}'
{
"name": "Andrea",
"gender": "male",
"probability": 0.98,
"count": 54032,
"country_id": "IT"
}
{
"mcpServers": {
"pipeworx-genderize": {
"command": "npx",
"args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/genderize/mcp"]
}
}
}