{
  "info": {
    "name": "NamSor — mcp.ai",
    "description": "REST API for the NamSor 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/namsor",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "namsor_classify_diaspora",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/classify/diaspora",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "classify",
            "diaspora"
          ]
        },
        "description": "Infer likely diaspora or ethnicity labels for one or more names within a known country of residence. Accepts 1-100 names and uses 20 NamSor credits per name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"names\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "namsor_classify_gender",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/classify/gender",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "classify",
            "gender"
          ]
        },
        "description": "Infer likely gender for one or more first-and-last names. Accepts 1-100 names and costs about 1 NamSor credit per name; results are probabilistic, not verified identity attributes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"names\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "namsor_classify_origin",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/classify/origin",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "classify",
            "origin"
          ]
        },
        "description": "Infer likely countries and region of origin for one or more first-and-last names. Accepts 1-100 names and uses 10 NamSor credits per name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"names\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "namsor_classify_proper_noun_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/classify/proper/noun/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "classify",
            "proper",
            "noun",
            "type"
          ]
        },
        "description": "Classify one or more proper nouns as likely personal names, brand names, place names, or other NamSor types. Accepts 1-100 values and costs about 1 credit each.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"names\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "namsor_classify_residence_country",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/classify/residence/country",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "classify",
            "residence",
            "country"
          ]
        },
        "description": "Infer likely countries and region of residence for one or more full personal names. Accepts 1-100 names and uses 10 NamSor credits per name; this differs from country of origin.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"names\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "namsor_get_account_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "usage"
          ]
        },
        "description": "Return the connected NamSor account's plan, quota, current billing-period usage, limits, and overage summary without exposing its API key.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "namsor_parse_names",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/parse/names",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "parse",
            "names"
          ]
        },
        "description": "Parse one or more full personal names into likely first-name and last-name components. Accepts 1-100 names and costs about 1 NamSor credit per name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"names\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}