{
  "info": {
    "name": "GenderAPI.io — mcp.ai",
    "description": "REST API for the GenderAPI.io MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/genderapi_io",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "genderapi_io_gender_api_query_by_first_name",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/gender/api/query/by/first/name",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "gender",
            "api",
            "query",
            "by",
            "first",
            "name"
          ]
        },
        "description": "Tool to determine gender by querying first name. Use when you need to infer likely gender for a given name with optional localization hints.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"ip\": \"\",\n  \"name\": \"\",\n  \"locale\": \"\",\n  \"askToAI\": false,\n  \"country\": \"\",\n  \"forceToGenderize\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "genderapi_io_genderapi_get_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/genderapi/get/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "genderapi",
            "get",
            "stats"
          ]
        },
        "description": "Tool to retrieve account usage statistics from GenderAPI.io. Use when you need to check remaining API credits and expiry.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "genderapi_io_get_gender_from_username",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/gender/from/username",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "gender",
            "from",
            "username"
          ]
        },
        "description": "Tool to determine gender from a username or nickname. Use when you have an alias or handle and want to infer gender from that identifier.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"askToAI\": false,\n  \"country\": \"\",\n  \"username\": \"\",\n  \"forceToGenderize\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "genderapi_io_list_error_codes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/error/codes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "error",
            "codes"
          ]
        },
        "description": "Tool to list all possible error codes returned by Gender API. Use when debugging or validating API responses.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "genderapi_io_query_by_email_address",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/by/email/address",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "by",
            "email",
            "address"
          ]
        },
        "description": "Tool to determine gender from an email address. Use when you need to infer gender for personalization after obtaining proper consent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"ip\": \"\",\n  \"email\": \"\",\n  \"locale\": \"\",\n  \"country\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}