Connects Claude to the Agify.io API for predicting age based on first names. Part of the Pipeworx gateway ecosystem, which aggregates 250+ data sources into MCP endpoints. You can either use this standalone server for simple age lookups or connect to the full Pipeworx gateway for broader access. Includes an ask_pipeworx tool that lets you query in plain English rather than calling specific functions. No authentication required since it uses Agify's free tier. Useful when you need demographic estimates in workflows involving name processing, user profiling, or data enrichment tasks where approximate age matters more than precision.
Agify MCP — age prediction from first name (agify.io, free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"agify": {
"url": "https://gateway.pipeworx.io/agify/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Agify data" })
The gateway picks the right tool and fills the arguments automatically.
MIT