# Genderize — how to use (mcp.ai)

Connect your Genderize account and use 1 tools for developer tools straight from your AI agent. Connect with your own API key. Genderize is an API that predicts the gender of a person based on their first name, providing statistical probabilities for male or female classifications.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_genderize?ms=1787295840000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `genderize_predict_gender`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/genderize`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/genderize/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/genderize/predict/gender` — Tool to predict gender from a given first name. Use when you need a quick gender estimation possibly localized by country code.
  - body: { name: string, apikey?: string, country_id?: string }

## Example prompts
- "What can I do in Genderize?"
- "Show me a summary of my Genderize account"

## More
- Page: https://mcp.ai/genderize
- Agent spec (llms.txt): https://mcp.ai/genderize/llms.txt
- Postman collection: https://mcp.ai/genderize/postman.json
